fix port conflict for druid peon (#6202)

This commit is contained in:
QiuMM 2018-08-24 10:05:14 +08:00 committed by Jonathan Wei
parent ddb26f2696
commit 9803ce954a
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ public class ForkingTaskRunner implements TaskRunner, TaskLogStreamer
); );
command.add(StringUtils.format("-Ddruid.host=%s", childHost)); command.add(StringUtils.format("-Ddruid.host=%s", childHost));
command.add(StringUtils.format("-Ddruid.port=%d", childPort)); command.add(StringUtils.format("-Ddruid.plaintextPort=%d", childPort));
command.add(StringUtils.format("-Ddruid.tlsPort=%d", tlsChildPort)); command.add(StringUtils.format("-Ddruid.tlsPort=%d", tlsChildPort));
/** /**
* These are not enabled per default to allow the user to either set or not set them * These are not enabled per default to allow the user to either set or not set them