dlmarion commented on code in PR #3124:
URL: https://github.com/apache/accumulo/pull/3124#discussion_r1072204519


##########
shell/src/main/java/org/apache/accumulo/shell/commands/ScanCommand.java:
##########
@@ -95,6 +96,14 @@ protected ConsistencyLevel getConsistency(CommandLine cl) {
     }
   }
 
+  protected String getUserData(CommandLine cl) {
+    if (cl.hasOption(userDataOpt.getOpt())) {
+      return cl.getOptionValue(userDataOpt.getOpt());
+    } else {
+      return "Accumulo Shell";

Review Comment:
   ScanCommand now uses:
   ```
   "shell-" + shellState.getAccumuloClient().whoami() + "-" + 
getCorrelationId(cl);
   ```



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