Skip to content

Commit

Permalink
ninja-fix Minor fix to CASSJAVA-80 change. Adding new entries to Defa…
Browse files Browse the repository at this point in the history
…ultDriverOption anywhere other than

at the end messes with the ordinal guarantees for exisitng apps.  We have a check for such a
thing in the build; moving this around avoids that concern.
  • Loading branch information
absurdfarce committed Mar 3, 2025
1 parent 3bb5b18 commit 168fc8f
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,6 @@ public enum DefaultDriverOption implements DriverOption {
* <p>Value-type: boolean
*/
SSL_HOSTNAME_VALIDATION("advanced.ssl-engine-factory.hostname-validation"),
/**
* Whether or not to do a DNS reverse-lookup of provided server addresses for SAN addresses.
*
* <p>Value-type: boolean
*/
SSL_ALLOW_DNS_REVERSE_LOOKUP_SAN("advanced.ssl-engine-factory.allow-dns-reverse-lookup-san"),
/**
* The location of the keystore file.
*
Expand Down Expand Up @@ -994,7 +988,13 @@ public enum DefaultDriverOption implements DriverOption {
* <p>Value type: {@link java.util.List List}&#60;{@link String}&#62;
*/
LOAD_BALANCING_DC_FAILOVER_PREFERRED_REMOTE_DCS(
"advanced.load-balancing-policy.dc-failover.preferred-remote-dcs");
"advanced.load-balancing-policy.dc-failover.preferred-remote-dcs"),
/**
* Whether or not to do a DNS reverse-lookup of provided server addresses for SAN addresses.
*
* <p>Value-type: boolean
*/
SSL_ALLOW_DNS_REVERSE_LOOKUP_SAN("advanced.ssl-engine-factory.allow-dns-reverse-lookup-san");

private final String path;

Expand Down

0 comments on commit 168fc8f

Please sign in to comment.