mirror of
https://github.com/google/nomulus
synced 2026-05-13 03:11:49 +00:00
* Avoid contention over the RefreshDnsRequest table This table can be small at times, when PSQL may use table scan in queries by keys. At the SERIALIZABLE isolation level, updates to unrelated rows may conflict due to this `optimization`. Lower the isolation level to repeatable read. * Code review