Skip to content

Commit

Permalink
[FLINK-8928] [QS] Improve server binding error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
kl0u committed Mar 29, 2018
1 parent eea887b commit 6a8172a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public void start() throws Throwable {
if (serverAddress != null) {
log.info("Started {} @ {}.", serverName, serverAddress);
} else {
log.info("Unable to start {}. All ports in provided range are occupied.", serverName);
log.info("Unable to start {}. All ports in provided range ({}) are occupied.", serverName, bindPortRange);
throw new FlinkRuntimeException("Unable to start " + serverName + ". All ports in provided range are occupied.");
}
}
Expand Down

0 comments on commit 6a8172a

Please sign in to comment.