Generator yields data but resolver doesn't always receive it. #851
Unanswered
LaraEzarik
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am working on an issue where intermittently data isn't getting through to my resolver from the source/generator. The only info I have found with a similar result is python/cpython#74956 but this was fixed in python 3.8 that I am using.
I am a little lost here I have tried wrapping the generator in a try except block but nothing is thrown and the I put pre and post yield prints of my data in so I can see if it gets sent one in the generator and one in the resolver this is where I see that the generator gets all the data but the resolver doesn't.
Bellow I have attached a sample of the code being used and another important thing to mention is that I am running about 25 of these that could be contributing to the issue in some way.
Beta Was this translation helpful? Give feedback.
All reactions