smiklosovic commented on code in PR #2490:
URL: https://github.com/apache/cassandra/pull/2490#discussion_r1264735087
##########
src/java/org/apache/cassandra/utils/FBUtilities.java:
##########
@@ -634,6 +635,13 @@ static IPartitioner newPartitioner(String
partitionerClassName, Optional<Abstrac
return FBUtilities.instanceOrConstruct(partitionerClassName,
"partitioner");
}
+ public static ICryptoProvider newCryptoProvider(String className) throws
ConfigurationException
+ {
+ if (!className.contains("."))
+ className = "org.apache.cassandra.service." + className;
Review Comment:
dont forget to replace `service` with `security`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]