mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-03-31 18:00:30 +08:00
Retry ping insert if duplicate key error occurs
Affects issues: - Fixed #3915
This commit is contained in:
parent
bf143e1861
commit
ec0b11d2a4
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user