Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev committed Sep 27, 2024
1 parent 02c1e01 commit f42fe85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData, version stri
continue
}
// Explicitly set the transaction isolation level to 'strict serializable' for each region
_, err = dbClient.Exec("SET TRANSACTION_ISOLATION TO 'STRICT SERIALIZABLE''")
_, err = dbClient.Exec("SET TRANSACTION_ISOLATION TO 'STRICT SERIALIZABLE'")
if err != nil {
log.Printf("[ERROR] Failed to set transaction isolation level for region %s: %v\n", provider.ID, err)
continue
Expand Down

0 comments on commit f42fe85

Please sign in to comment.