Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mryan43 committed Oct 12, 2015
1 parent cd07d78 commit c8f4258
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void findAvailableNetworkPort(@Observes(precedence = 50) ManagerStarted e
}
}
} catch (SocketException e){
// Failed to list all network addresses, we fallback and try to bind on the default port
// Failed to list all network addresses, we fallback and try to bind on the default address
for (int port = MIN_PORT_NUMBER; port <= MAX_PORT_NUMBER; port++) {
try {
ServerSocket serverSocket = new ServerSocket(port);
Expand Down

0 comments on commit c8f4258

Please sign in to comment.