This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 0c47c90911 ARTEMIS-4173 Adding AMQ to logger.findText on PagingTest
0c47c90911 is described below
commit 0c47c9091137e27dd251f5da66027dd79754c4ed
Author: Clebert Suconic <[email protected]>
AuthorDate: Mon Dec 9 10:31:29 2024 -0500
ARTEMIS-4173 Adding AMQ to logger.findText on PagingTest
This failed at least once on my CI because the numeric pattern was used in
the temporary directory, just out of luck.
---
.../java/org/apache/activemq/artemis/tests/db/paging/PagingTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/tests/db-tests/src/test/java/org/apache/activemq/artemis/tests/db/paging/PagingTest.java
b/tests/db-tests/src/test/java/org/apache/activemq/artemis/tests/db/paging/PagingTest.java
index 46d823c3f2..ccbc0902f1 100644
---
a/tests/db-tests/src/test/java/org/apache/activemq/artemis/tests/db/paging/PagingTest.java
+++
b/tests/db-tests/src/test/java/org/apache/activemq/artemis/tests/db/paging/PagingTest.java
@@ -172,8 +172,8 @@ public class PagingTest extends ParameterDBTestBase {
if (loggerHandler != null) {
try {
// These are the message errors for the negative size address size
- assertFalse(loggerHandler.findText("222214"));
- assertFalse(loggerHandler.findText("222215"));
+ assertFalse(loggerHandler.findText("AMQ222214"));
+ assertFalse(loggerHandler.findText("AMQ222215"));
} finally {
loggerHandler.close();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact