Set io.netty.transport.noNative to false for in-jvm dtests

patch by Stefan Miklosovic; reviewed by Brandon Williams from CASSANDRA-18830
This commit is contained in:
Stefan Miklosovic 2023-09-07 16:31:09 +02:00
parent a23f4c0b15
commit 9f4368cbb7
No known key found for this signature in database
GPG Key ID: 32F35CB2F546D93E
2 changed files with 2 additions and 1 deletions

View File

@ -269,6 +269,7 @@ public enum CassandraRelevantProperties
INTERNODE_EVENT_THREADS("cassandra.internode-event-threads"),
IO_NETTY_EVENTLOOP_THREADS("io.netty.eventLoopThreads"),
IO_NETTY_TRANSPORT_ESTIMATE_SIZE_ON_SUBMIT("io.netty.transport.estimateSizeOnSubmit"),
IO_NETTY_TRANSPORT_NONATIVE("io.netty.transport.noNative"),
JAVAX_RMI_SSL_CLIENT_ENABLED_CIPHER_SUITES("javax.rmi.ssl.client.enabledCipherSuites"),
JAVAX_RMI_SSL_CLIENT_ENABLED_PROTOCOLS("javax.rmi.ssl.client.enabledProtocols"),
/** Java class path. */

View File

@ -193,7 +193,7 @@ public abstract class AbstractCluster<I extends IInstance> implements ICluster<I
// those properties may be set for unit-test optimizations; those should not be used when running dtests
CassandraRelevantProperties.TEST_FLUSH_LOCAL_SCHEMA_CHANGES.reset();
CassandraRelevantProperties.NON_GRACEFUL_SHUTDOWN.reset();
CassandraRelevantProperties.NATIVE_EPOLL_ENABLED.setBoolean(false);
CassandraRelevantProperties.IO_NETTY_TRANSPORT_NONATIVE.setBoolean(false);
}
public AbstractBuilder(Factory<I, C, B> factory)