Skip to content

Commit 6e4354a

Browse files
authored
tests: Raise shutdown timeout in aws lambda tests (#6129)
We've been seeing teardown timeouts in this test suite. Let's see if this helps.
1 parent aa4378f commit 6e4354a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integrations/aws_lambda/test_aws_lambda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def before_test():
8282
print("[test_environment fixture] Tearing down AWS Lambda test infrastructure")
8383

8484
process.terminate()
85-
process.wait(timeout=5) # Give it time to shut down gracefully
85+
process.wait(timeout=10) # Give it time to shut down gracefully
8686

8787
# Force kill if still running
8888
if process.poll() is None:

0 commit comments

Comments
 (0)