This is an automated email from the ASF dual-hosted git repository. jonwei pushed a commit to branch fix_indexer_tls_port in repository https://gitbox.apache.org/repos/asf/incubator-druid.git
commit 87f7b6e62500af74db126473b9a7b5f0ab2c900a Author: jon-wei <[email protected]> AuthorDate: Tue Aug 27 16:05:04 2019 -0700 Fix default CliIndexer TLS port --- services/src/main/java/org/apache/druid/cli/CliIndexer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/src/main/java/org/apache/druid/cli/CliIndexer.java b/services/src/main/java/org/apache/druid/cli/CliIndexer.java index fc1bed1..97afa5b 100644 --- a/services/src/main/java/org/apache/druid/cli/CliIndexer.java +++ b/services/src/main/java/org/apache/druid/cli/CliIndexer.java @@ -100,7 +100,7 @@ public class CliIndexer extends ServerRunnable { binder.bindConstant().annotatedWith(Names.named("serviceName")).to("druid/indexer"); binder.bindConstant().annotatedWith(Names.named("servicePort")).to(8091); - binder.bindConstant().annotatedWith(Names.named("tlsServicePort")).to(8091); + binder.bindConstant().annotatedWith(Names.named("tlsServicePort")).to(8291); IndexingServiceModuleHelper.configureTaskRunnerConfigs(binder); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
