fix: x data race and parallize some tests

GitOrigin-RevId: 737267e41d80a6278bcb8cc657208a3a0cf13dcd
This commit is contained in:
Philippe Gaultier 2025-12-05 17:46:09 +01:00 committed by ory-bot
parent 4014eeb08c
commit 116a66e18a
1 changed files with 0 additions and 4 deletions

View File

@ -211,10 +211,6 @@ func WatchChangeFeed(ctx context.Context, cx *sqlx.DB, tableName string, out Eve
}
}()
if err := rows.Err(); err != nil {
return nil, errors.WithStack(err)
}
return d, nil
}