-
Notifications
You must be signed in to change notification settings - Fork 85
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
waitForProcess
throws a NoSuchThing
exception if the process completes too quickly.
#215
Comments
I've never seen this, despite having test cases that include very short lived processes like |
It's possible that it isn't related to it being short lived, that part is speculation. The observed behavior is that if I launch several (4) processes using When I drilled down, the exception being raised was that it was blocked indefinitely on an STM transaction and I figured out that this was due to I filed this bug here because I think the underlying issue is that I will put together a small repo that can still produce this error today. |
Any further updates on this, @ProofOfKeags ? |
I completely forgot about this. No updates as of right now. Not sure when I'll be able to get to it. |
I have observed that if you call
waitForProcess
and the process has already completed, an exception is raised. This can be rather surprising since if you launch a process and it doesn't take a lot of time you can be unable to check whether or not it completed successfully by looking at the exit code.The text was updated successfully, but these errors were encountered: