From d5249b67ad169d56e78c03df88cce9f1da5ef353 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Tue, 21 Jan 2014 19:45:24 -0800 Subject: [PATCH] Changed port number for test server in ClientRequestHandlerTest When tests are run in parallel, the port number in ServerRequestHandlerTests and ClientRequestHandlerTests could have conflicted. Changed the port number to avoid conflict. Change-Id: I63fae99458fc9109fdbfc5f063ca4289b10aa30c Signed-off-by: Abhishek Kumar --- .../sal/connector/remoterpc/ClientRequestHandlerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendaylight/md-sal/sal-remoterpc-connector/implementation/src/test/java/org/opendaylight/controller/sal/connector/remoterpc/ClientRequestHandlerTest.java b/opendaylight/md-sal/sal-remoterpc-connector/implementation/src/test/java/org/opendaylight/controller/sal/connector/remoterpc/ClientRequestHandlerTest.java index e1345945a7..84407fe828 100644 --- a/opendaylight/md-sal/sal-remoterpc-connector/implementation/src/test/java/org/opendaylight/controller/sal/connector/remoterpc/ClientRequestHandlerTest.java +++ b/opendaylight/md-sal/sal-remoterpc-connector/implementation/src/test/java/org/opendaylight/controller/sal/connector/remoterpc/ClientRequestHandlerTest.java @@ -22,7 +22,7 @@ public class ClientRequestHandlerTest { ZMQ.Context context; ExecutorService serverThread; - final String SERVER_ADDRESS = "localhost:5554"; + final String SERVER_ADDRESS = "localhost:5553"; ClientRequestHandler handler; -- 2.36.6