nizhikov commented on a change in pull request #9814:
URL: https://github.com/apache/ignite/pull/9814#discussion_r816534497
##########
File path:
modules/control-utility/src/test/java/org/apache/ignite/util/GridCommandHandlerConsistencyTest.java
##########
@@ -138,6 +148,26 @@ private void testAtomicAndTx(boolean incVal) throws
Exception {
injectTestSystemOut();
+ LogListener lsnrUnmaskedKey = matches("Key: 0 (cache: ").build(); //
Unmasked key.
+ LogListener lsnrMaskedKey = matches("Key: [HIDDEN_KEY#").build(); //
Masked key.
+ LogListener lsnrMaskedVal = matches("Value: [HIDDEN_VALUE#").build();
// Masked value.
+
+ listeningLog.registerListener(lsnrUnmaskedKey);
+ listeningLog.registerListener(lsnrMaskedKey);
+ listeningLog.registerListener(lsnrMaskedVal);
+
+ List<LogListener> listeners = new ArrayList<>();
+
+ // It's unable to check just "Key:" count while
https://issues.apache.org/jira/browse/IGNITE-15316 not fixed
+ if (S.includeSensitive())
Review comment:
Fix it here and in another places, also.
--
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]