-
Notifications
You must be signed in to change notification settings - Fork 12
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
Stream goes into flowing mode immediately #66
Comments
I did not explicitly test such cases, so the parser may indeed be too eager with its parsing tasks. Thanks for reporting! |
I have not managed to reproduce this bug. It seems to me that both in streaming and in regular mode the parser used as a |
@Tpt Might be interesting to also check for the case where element by element is being read ( But in any case, it's possible that this specific issue was already fixed by some other change. |
Ok, great! |
We've experienced some odd issues that are probably caused by race conditions. I think it boils down to the stream going into flowing mode immediately
Afaik, the stream should only go into flowing mode when:
resume()
I would expect the below snippet to terminate fast and essentially be a no-op. In reality it isn't, and depending on the size of
test.jsonld
it will take a while for it to finish.Would you agree with my observation with the stream going into flowing mode too quickly?
The text was updated successfully, but these errors were encountered: