dcapwell commented on code in PR #4079:
URL: https://github.com/apache/cassandra/pull/4079#discussion_r2042595814


##########
src/java/org/apache/cassandra/config/DatabaseDescriptor.java:
##########
@@ -5334,7 +5334,7 @@ public static long getAccordRepairTimeoutNanos()
 
     public static boolean getAccordTransactionsEnabled()
     {
-        return conf.accord.enabled;
+        return conf == null ? false : conf.accord.enabled;

Review Comment:
   didn't hit any issues, just being defensive for tests



-- 
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: pr-unsubscr...@cassandra.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org
For additional commands, e-mail: pr-h...@cassandra.apache.org

Reply via email to