smiklosovic commented on code in PR #2649:
URL: https://github.com/apache/cassandra/pull/2649#discussion_r1309757210


##########
src/java/org/apache/cassandra/config/DatabaseDescriptor.java:
##########
@@ -3974,6 +3974,17 @@ public static void setGCWarnThreshold(int threshold)
         conf.gc_warn_threshold = new 
DurationSpec.IntMillisecondsBound(threshold);
     }
 
+    public static boolean isBulkLoadEnabled()
+    {
+        return conf.bulk_load_enabled;
+    }
+
+    @VisibleForTesting
+    public static void setBulkLoadEnabled(boolean bulk_load_enabled)

Review Comment:
   do not use snake-case here, just use camel-case, `boolean bulkLoadEnabled;



-- 
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]

Reply via email to