Skip to content

Commit 5a9a41d

Browse files
committed
Disable pipelining for now
1 parent b01f281 commit 5a9a41d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

osu.Server.QueueProcessor/DatabaseAccess.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ public static MySqlConnection GetConnection()
3131

3232
string passwordString = string.IsNullOrEmpty(password) ? string.Empty : $"Password={password};";
3333

34-
connectionString = $"Server={host};Port={port};Database={name};User ID={user};{passwordString}ConnectionTimeout=5;ConnectionReset=false;Pooling={pooling};Max Pool Size={maxPoolSize};";
34+
// Pipelining disabled because ProxySQL no like.
35+
connectionString = $"Server={host};Port={port};Database={name};User ID={user};{passwordString}ConnectionTimeout=5;ConnectionReset=false;Pooling={pooling};Max Pool Size={maxPoolSize}; Pipelining=false";
3536
}
3637

3738
var connection = new MySqlConnection(connectionString);

0 commit comments

Comments
 (0)