You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to unlock integration tests driver to be ran on modern cassandra and scylla we need to implement an API for manipulating configuration and do that in the same way as scylladb/java-driver does:
StringBuilder updateConfArguments = new StringBuilder();
for (Map.Entry<String, Object> conf : cassandraConfiguration.entrySet()) {
updateConfArguments.append(conf.getKey()).append(':').append(conf.getValue()).append(' ');
}
if (getCassandraVersion().compareTo(Version.V2_2_0) >= 0 && !SCYLLA_ENABLEMENT) {
// @IntegrationTestDisabledScyllaJVMArgs @IntegrationTestDisabledScyllaUDF
if (getCassandraVersion().compareTo(Version.V4_1_0) >= 0) {
updateConfArguments.append("user_defined_functions_enabled:true").append(' ');
} else {
updateConfArguments.append("enable_user_defined_functions:true").append(' ');
}
}
if (updateConfArguments.length() > 0) {
execute("updateconf", updateConfArguments.toString());
}
The text was updated successfully, but these errors were encountered:
In order to unlock integration tests driver to be ran on modern cassandra and scylla we need to implement an API for manipulating configuration and do that in the same way as scylladb/java-driver does:
The text was updated successfully, but these errors were encountered: