smiklosovic commented on code in PR #3708:
URL: https://github.com/apache/cassandra/pull/3708#discussion_r1881875296
##########
src/java/org/apache/cassandra/config/EncryptionOptions.java:
##########
@@ -470,7 +470,12 @@ public ClientAuth getClientAuth()
public String[] acceptedProtocolsArray()
{
List<String> ap = getAcceptedProtocols();
- return ap == null ? new String[0] : ap.toArray(new String[0]);
+ return ap == null ? null : ap.toArray(new String[0]);
Review Comment:
this was differing from `cipherSuitesArrays`, actual bug.
--
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]