Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
Co-authored-by: Philip Dubé <[email protected]>
  • Loading branch information
Amogh-Bharadwaj and serprex authored Jan 22, 2024
1 parent abca65e commit 12f5815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/bigquery/bigquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func TableCheck(ctx context.Context, client *bigquery.Client, dataset string) er
// Drop the table
deleteErr := newTable.Delete(ctx)
if deleteErr != nil {
errs = append(errs, fmt.Errorf("unable to delete table :%w. ", deleteErr))
errs = append(errs, fmt.Errorf("unable to delete table: %w. ", deleteErr))
}

if len(errs) > 0 {
Expand Down

0 comments on commit 12f5815

Please sign in to comment.