Skip to content

Commit

Permalink
Use port 1885 as 1884 is used by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Oct 7, 2020
1 parent b8174d9 commit bb1ee15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class MqttClientKeepAliveTest {

private void startServer(TestContext ctx) {
Async async = ctx.async();
server.listen(1884, "localhost", ctx.asyncAssertSuccess(server -> async.complete()));
server.listen(1885, "localhost", ctx.asyncAssertSuccess(server -> async.complete()));
async.awaitSuccess(10000);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class MqttServerKeepAliveTest {

private void startServer(TestContext ctx) {
Async async = ctx.async();
server.listen(1884, "localhost", ctx.asyncAssertSuccess(server -> async.complete()));
server.listen(1885, "localhost", ctx.asyncAssertSuccess(server -> async.complete()));
async.awaitSuccess(10000);
}

Expand Down

0 comments on commit bb1ee15

Please sign in to comment.