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
Currently (influxdb 1.1.1), the CLI exits with status zero, even if import errors occur:
influx -import -path=import_error.txt; echo "exit code: $?"
2017/01/18 11:40:00 error writing batch: {"error":"unable to parse 'temperature value=error 1484728200': invalid boolean"} temperature value=error 1484728200 exit code: 0
2017/01/18 11:40:00 error writing batch: {"error":"unable to parse 'temperature value=error 1484728200': invalid boolean"}
temperature value=error 1484728200 exit code: 0
contents of import_error.txt:
# DML # CONTEXT-DATABASE: mydb temperature value=error 1484728200
# DML # CONTEXT-DATABASE: mydb
temperature value=error 1484728200
Errors like a missing file already result in exit codes other than 0.
The text was updated successfully, but these errors were encountered:
e-dard
No branches or pull requests
Currently (influxdb 1.1.1), the CLI exits with status zero, even if import errors occur:
influx -import -path=import_error.txt; echo "exit code: $?"
contents of import_error.txt:
Errors like a missing file already result in exit codes other than 0.
The text was updated successfully, but these errors were encountered: