Retry ping insert if duplicate key error occurs

Affects issues:
- Fixed #3915
This commit is contained in:
Aurora Lahtela 2025-01-06 12:39:23 +02:00
parent bf143e1861
commit ec0b11d2a4
2 changed files with 2 additions and 2 deletions

View File

@ -169,6 +169,6 @@ public class DBOpException extends IllegalStateException implements ExceptionWit
public boolean isDuplicateKeyViolation() {
return context != null
&& context.getRelated().contains(DBOpException.CONSTRAINT_VIOLATION);
&& context.getRelated().contains(DBOpException.DUPLICATE_KEY);
}
}

View File

@ -60,7 +60,7 @@ public class PingStoreTransaction extends Transaction {
execute(DataStoreQueries.storePing(playerUUID, serverUUID, ping));
} catch (DBOpException failed) {
if (userInsertError != null) failed.addSuppressed(userInsertError);
if (failed.isUserIdConstraintViolation()) {
if (failed.isUserIdConstraintViolation() || failed.isDuplicateKeyViolation()) {
retry(ping, failed);
} else {
throw failed;