This is an automated email from the ASF dual-hosted git repository.

jonwei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 9803ce9  fix port conflict for druid peon (#6202)
9803ce9 is described below

commit 9803ce954ac42e9330f6de4a5497a0adfb44dc5e
Author: QiuMM <[email protected]>
AuthorDate: Fri Aug 24 10:05:14 2018 +0800

    fix port conflict for druid peon (#6202)
---
 .../src/main/java/io/druid/indexing/overlord/ForkingTaskRunner.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/indexing-service/src/main/java/io/druid/indexing/overlord/ForkingTaskRunner.java
 
b/indexing-service/src/main/java/io/druid/indexing/overlord/ForkingTaskRunner.java
index 37462d2..cf4fcdb 100644
--- 
a/indexing-service/src/main/java/io/druid/indexing/overlord/ForkingTaskRunner.java
+++ 
b/indexing-service/src/main/java/io/druid/indexing/overlord/ForkingTaskRunner.java
@@ -385,7 +385,7 @@ public class ForkingTaskRunner implements TaskRunner, 
TaskLogStreamer
                               );
 
                               
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));
                               /**
                                * These are not enabled per default to allow 
the user to either set or not set them


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to