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 8af25f5 commit 8e2ee00Copy full SHA for 8e2ee00
core/src/main/java/com/datastax/oss/driver/internal/core/util/concurrent/DriverBlockHoundIntegration.java
@@ -107,5 +107,11 @@ public void applyTo(BlockHound.Builder builder) {
107
builder.allowBlockingCallsInside("io.netty.util.concurrent.GlobalEventExecutor", "addTask");
108
builder.allowBlockingCallsInside(
109
"io.netty.util.concurrent.SingleThreadEventExecutor", "addTask");
110
+
111
+ // Exceptions for scylla-java-driver-matrix
112
113
+ // Various parallelizable tests sometimes fail due to ConcurrentMap's put.
114
+ builder.allowBlockingCallsInside(
115
+ "com.datastax.oss.driver.shaded.guava.common.collect.MapMakerInternalMap", "put");
116
}
117
0 commit comments