Skip to content

Commit

Permalink
TESTING: Longer wait before force killing services
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaymankar committed Dec 23, 2024
1 parent 727c5b9 commit 6ba5b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/test/Testlib/ModService.hs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ cleanupService :: (HasCallStack) => String -> ServiceInstance -> IO ()
cleanupService logPrefix inst = do
mPid <- getPid inst.handle
for_ mPid (signalProcess keyboardSignal)
timeout 50000 (waitForProcess inst.handle) >>= \case
timeout 1_000_000 (waitForProcess inst.handle) >>= \case
Just _ ->
putStrLn $ logPrefix <> " is dead"
Nothing -> do
Expand Down

0 comments on commit 6ba5b67

Please sign in to comment.