Skip to content
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

Fix issue where the export CLI is not returning a 0 exit-code for failures. Closes #72 #79

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions templates/main.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ func executeQuery(tableName string, conectionName string, columns []string, qual
response, err := stream.Recv()
if err != nil {
fmt.Printf("[ERROR] Error receiving data from the channel: %v", err)
// return a non-zero exit code
os.Exit(1)
break
}
if response == nil {
Expand Down
Loading