We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d56169 commit 08b159dCopy full SHA for 08b159d
tests/SideBySide/ConnectionPool.cs
@@ -175,8 +175,19 @@ public async Task WaitTimeout()
175
176
using (var connection = new MySqlConnection(csb.ConnectionString))
177
{
178
- await connection.OpenAsync();
179
- Assert.NotEqual(serverThread, connection.ServerThread);
+#if !BASELINE
+ try
180
+#endif
181
+ {
182
+ await connection.OpenAsync();
183
+ Assert.NotEqual(serverThread, connection.ServerThread);
184
+ }
185
186
+ catch (MySqlProtocolException) when (csb.UseCompression)
187
188
+ // workaround for https://bugs.mysql.com/bug.php?id=103412
189
190
191
}
192
193
0 commit comments