Archiviert
1
0

Merge pull request 'Using sql connections in round robbin mode instead of the same (possibly)' (#361) from sql into master

Reviewed-on: SteamWar/BungeeCore#361
Reviewed-by: Lixfel <lixfel@steamwar.de>
Dieser Commit ist enthalten in:
Lixfel 2022-06-07 14:14:21 +02:00
Commit 59672e8d02

Datei anzeigen

@ -115,7 +115,7 @@ public class Statement implements AutoCloseable {
}
synchronized (connections) {
connections.push(connection);
connections.addLast(connection);
}
return result;