ifesdjeen commented on code in PR #3274:
URL: https://github.com/apache/cassandra/pull/3274#discussion_r1598385551


##########
src/java/org/apache/cassandra/config/Config.java:
##########
@@ -1283,4 +1283,21 @@ public static void log(Config config)
     public double severity_during_decommission = 0;
 
     public StorageCompatibilityMode storage_compatibility_mode;
+
+    public enum CQLStartTime
+    {
+        REQUEST, // uses a timestamp that represent the start of processing of 
the request
+        QUEUE    // uses a timestamp that represents when the request was 
enqueued
+    }
+    public volatile CQLStartTime cql_start_time = CQLStartTime.REQUEST;

Review Comment:
   Good point; this one was created before native transport timeout existed so 
i have not thought about it!



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