You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.anyMatch(event -> event.getLevel() == Level.ERROR && event.getFormattedMessage().contains("Malformed trace_id found in the audit log.") && event.getFormattedMessage().contains("Malformed uid_trace_id found in the audit log."));
456
+
.anyMatch(event -> event.getLevel() == Level.ERROR && event.getFormattedMessage().contains("Malformed trace_id found in the audit log: it contains secrets. ") && event.getFormattedMessage().contains("Malformed uid_trace_id found in the audit log: it contains secrets. "));
.anyMatch(event -> event.getLevel() == Level.ERROR && event.getFormattedMessage().contains("Malformed trace_id found in the audit log: it contains SQL statement. ") && event.getFormattedMessage().contains("Malformed uid_trace_id found in the audit log: it contains SQL statement. "));
456
476
457
477
assertThat(errorLogged).isTrue();
458
478
}
@@ -492,7 +512,7 @@ public void testMalformedUIDTraceId() {
.anyMatch(event -> event.getLevel() == Level.ERROR && event.getFormattedMessage().contains("Malformed uid_trace_id found in the audit log."));
515
+
.anyMatch(event -> event.getLevel() == Level.ERROR && event.getFormattedMessage().contains("Malformed uid_trace_id found in the audit log: it contains secrets. "));
496
516
497
517
assertThat(errorLogged).isTrue();
498
518
}
@@ -511,7 +531,7 @@ public void testMalformedUIDInstanceId() {
.anyMatch(event -> event.getLevel() == Level.ERROR && event.getFormattedMessage().contains("Malformed uid_instance_id found in the audit log. "));
534
+
.anyMatch(event -> event.getLevel() == Level.ERROR && event.getFormattedMessage().contains("Malformed uid_instance_id found in the audit log: it contains secrets. "));
0 commit comments