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 b3890f2614 NO-JIRA fixing typo on PortCheckExtension
b3890f2614 is described below
commit b3890f2614dbb9890cef3f2b976120fa5d13ddd0
Author: Clebert Suconic <[email protected]>
AuthorDate: Tue Nov 4 14:50:53 2025 -0500
NO-JIRA fixing typo on PortCheckExtension
---
.../apache/activemq/artemis/tests/extensions/PortCheckExtension.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/artemis-unit-test-support/src/main/java/org/apache/activemq/artemis/tests/extensions/PortCheckExtension.java
b/artemis-unit-test-support/src/main/java/org/apache/activemq/artemis/tests/extensions/PortCheckExtension.java
index 8d3373eebc..5ee245ad06 100644
---
a/artemis-unit-test-support/src/main/java/org/apache/activemq/artemis/tests/extensions/PortCheckExtension.java
+++
b/artemis-unit-test-support/src/main/java/org/apache/activemq/artemis/tests/extensions/PortCheckExtension.java
@@ -59,7 +59,7 @@ public class PortCheckExtension implements Extension,
BeforeEachCallback, AfterE
ServerSocket s = null;
try {
s = new ServerSocket();
- s.bind(new InetSocketAddress("localhost", 61616));
+ s.bind(new InetSocketAddress("localhost", port));
return true;
} catch (IOException e) {
e.printStackTrace();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact