keith-turner opened a new issue, #5386: URL: https://github.com/apache/accumulo/issues/5386
**Describe the bug** AESCryptoService uses the same Cipher object for multiple output streams. Cipher is a stateful object so it will break if the output streams use overlaps. This overlap could be caused by multiple threads or a single thread interleaving writes to multiple streams. **Expected behavior** Multiple output streams can be created and written concurrently OR if this is not supported the code should defend against this. Test should be added for either case. **Additional context** This was fixed for reading in #5384. -- 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]
