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 33e90fc commit 39f8169Copy full SHA for 39f8169
src/test/java/io/r2dbc/mssql/util/BlockhoundExceptions.java
@@ -16,6 +16,7 @@
16
17
package io.r2dbc.mssql.util;
18
19
+import io.r2dbc.mssql.client.ssl.TdsSslHandler;
20
import reactor.blockhound.BlockHound;
21
import reactor.blockhound.integration.BlockHoundIntegration;
22
@@ -26,5 +27,6 @@ public class BlockhoundExceptions implements BlockHoundIntegration {
26
27
@Override
28
public void applyTo(BlockHound.Builder builder) {
29
builder.allowBlockingCallsInside(SecureRandom.class.getName(), "next");
30
+ builder.allowBlockingCallsInside(TdsSslHandler.class.getName(), "createSslHandler");
31
}
32
0 commit comments