Skip to content

Commit

Permalink
Fix issue where the export CLI is not returning a 0 exit-code for fai…
Browse files Browse the repository at this point in the history
…lures. Closes #72
  • Loading branch information
pskrbasu committed Jul 3, 2024
1 parent af751fb commit 0bbc7d5
Showing 1 changed file with 2 additions and 0 deletions.
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

0 comments on commit 0bbc7d5

Please sign in to comment.