ctubbsii commented on code in PR #276:
URL: https://github.com/apache/accumulo-testing/pull/276#discussion_r1688458342


##########
src/main/java/org/apache/accumulo/testing/continuous/ContinuousIngest.java:
##########
@@ -173,6 +181,18 @@ protected static void doIngest(AccumuloClient client, long 
rowMin, long rowMax,
     log.info("DELETES will occur with a probability of {}",
         String.format("%.02f", deleteProbability));
 
+    zipfianEnabled = 
Boolean.parseBoolean(testProps.getProperty("test.ci.ingest.zipfian.enabled"));
+
+    if (zipfianEnabled) {
+      minSize = 
Integer.parseInt(testProps.getProperty("test.ci.ingest.zipfian.min.size"));
+      maxSize = 
Integer.parseInt(testProps.getProperty("test.ci.ingest.zipfian.max.size"));

Review Comment:
   Should these be `Long.parseLong()` instead or is Integer enough?



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

Reply via email to