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
hurlfmt is panicking when pipe is broken:
hurlfmt
$ echo 'GET https://hurl.dev' | hurlfmt --out json | aaa zsh: command not found: aaa thread 'main' panicked at packages/hurlfmt/src/main.rs:138:18: writing bytes to console: Os { code: 32, kind: BrokenPipe, message: "Broken pipe" } note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Panicking is here =>
hurl/packages/hurlfmt/src/main.rs
Lines 148 to 149 in 4e2f2d1
Compare with Hurl:
$ echo 'GET https://hurl.dev' | hurl | aaa zsh: command not found: aaa error: IO Error --> -:1:1 | 1 | GET https://hurl.dev | ^ Broken pipe (os error 32) |
hurlfmt should exit with an error message and a status code != 0.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hurlfmt
is panicking when pipe is broken:Panicking is here =>
hurl/packages/hurlfmt/src/main.rs
Lines 148 to 149 in 4e2f2d1
Compare with Hurl:
hurlfmt
should exit with an error message and a status code != 0.The text was updated successfully, but these errors were encountered: