-
Notifications
You must be signed in to change notification settings - Fork 97
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
Inevitable recursion error from inside get_result #1539
Closed
Comments
@Prasy12 can you add this one as well? |
3 tasks
It's curious why the retry logic for |
@cjao I think it's Relevant lines from the error msg above:
|
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Environment
What is happening?
If
ct.get_result(dispatch_id, wait=True)
takes long enough, eventually aRecursionError
will be raised.How can we reproduce the issue?
Any workflow that takes long enough will trigger this error.
What should happen?
get_result
should not be interrupted by theRecursionError
Any suggestions?
except
block insideget_result()
to catch theRecursionError
.while True
loop and return on successfulpickle.loads()
.The text was updated successfully, but these errors were encountered: