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
Streaming backend assumes that input format is typedbytes even if -inputformat argument is 'text': https://github.com/klbostee/dumbo/blob/release-0.21.36/dumbo/backends/streaming.py#L81
This leads to apply typedbytes.PairedInput to all input lines: https://github.com/klbostee/dumbo/blob/release-0.21.36/dumbo/core.py#L380
Appling util.loadtext instead of typedbytes.PairedInput resolves this issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Streaming backend assumes that input format is typedbytes even if -inputformat argument is 'text':
https://github.com/klbostee/dumbo/blob/release-0.21.36/dumbo/backends/streaming.py#L81
This leads to apply typedbytes.PairedInput to all input lines: https://github.com/klbostee/dumbo/blob/release-0.21.36/dumbo/core.py#L380
Appling util.loadtext instead of typedbytes.PairedInput resolves this issue.
The text was updated successfully, but these errors were encountered: