-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix integration tests #180
Conversation
tests/gunicorn_utils.py
Outdated
|
||
# Actually wait for the process to finish. There doesn't seem to be a | ||
# reliable way of checking if the timeout was reached or this ended normally, | ||
# but if the timeout is reached it will probably error later anyway. | ||
proc.join(timeout=10) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we try to kill the process afterwards in case it timed out? So ultimately, we are first trying to gracefully stop it with terminate
, and if that fails, we kill
it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in 3a10f40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!!
Closes #179
Closes #177
Open to trying a different approach if preferred.