Skip to content

Commit

Permalink
fix CI failures due to race condition in recoverysigner unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
urvisavla committed Sep 23, 2024
1 parent f668d5b commit 333ce27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions support/db/dbtest/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ func checkReadOnly(t testing.TB, DSN string) {
if !rows.Next() {
_, err = tx.Exec("CREATE ROLE user_ro WITH LOGIN PASSWORD 'user_ro';")
if err != nil {
// Handle race condition by ignoring the error if it's a duplicate key violation
if pqErr, ok := err.(*pq.Error); ok && pqErr.Code == "23505" {
// Handle race condition by ignoring the error if it's a duplicate key violation or duplicate object error
if pqErr, ok := err.(*pq.Error); ok && (pqErr.Code == "23505" || pqErr.Code == "42710") {
return
}
}
Expand Down

0 comments on commit 333ce27

Please sign in to comment.