We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from dataflows import Flow, printer def generator(): for i in range(5): raise Exception() yield {"i": i} Flow(generator(), printer()).process()
Exception
no exception, empty resource
The text was updated successfully, but these errors were encountered:
related to inferring schema, moving exception below the yield raises it
from dataflows import Flow, printer def generator(): for i in range(5): yield {"i": i} raise Exception() Flow(generator(), printer()).process()
Sorry, something went wrong.
Interesting find! Are you looking into it?
not at the moment (probably not anytime soon)
👍 assigning to me then
556e435
akariv
No branches or pull requests
reproduction
Expected
Exception
Actual
no exception, empty resource
The text was updated successfully, but these errors were encountered: