You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "dlmarion (via GitHub)" <gi...@apache.org> on 2023/05/01 20:23:56 UTC

[GitHub] [accumulo] dlmarion commented on issue #3367: Accumulo 2 shell scans require escape characters where Accumulo 1 did not

dlmarion commented on issue #3367:
URL: https://github.com/apache/accumulo/issues/3367#issuecomment-1530182946

   This is likely due to the upgrade of JLine to version 3. The escape character in their default line parser is set [here](https://github.com/jline/jline3/blob/master/reader/src/main/java/org/jline/reader/impl/DefaultParser.java#L53). I'm wondering if the solution is:
   
   ```
       DefaultParser parser = new DefaultParser();
       parser.setEscapeChars(new char[] {(char) 92});
       reader = LineReaderBuilder.builder().terminal(terminal).parser(parser).build();
   ```
   
   We'll have to test that out.


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org