yifan-c commented on code in PR #9:
URL: https://github.com/apache/cassandra-analytics/pull/9#discussion_r1247271887


##########
cassandra-analytics-core/src/main/java/org/apache/cassandra/spark/bulkwriter/CassandraClusterInfo.java:
##########
@@ -338,11 +346,14 @@ public String getVersionFromFeature()
 
     public String getVersionFromSidecar()
     {
-        LOGGER.info("Getting Cassandra versions from all nodes");
-        List<NodeSettings> allNodeSettings = 
Sidecar.allNodeSettingsBlocking(conf,
-                                                                             
cassandraContext.getSidecarClient(),
-                                                                             
cassandraContext.clusterConfig);
-        return getLowestVersion(allNodeSettings);
+        try
+        {
+            return getLowestVersion(allNodeSettings.get());
+        }
+        catch (InterruptedException | ExecutionException exception)

Review Comment:
   for `InterruptedException`, it is better to restore the interrupted state 
for the thread. It might not be a big issue as the actual effect here is to 
exit the job, which makes the comment just a nit. 



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