You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by as...@apache.org on 2019/08/31 16:07:41 UTC

[incubator-druid] branch master updated: Fix hump nomenclature (#8447)

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

asdf2014 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 58fbb69  Fix hump nomenclature (#8447)
58fbb69 is described below

commit 58fbb69113d6bfc30bb4b28412a05e3b5ea334ba
Author: Grace Koo <gr...@gmail.com>
AuthorDate: Sun Sep 1 00:07:29 2019 +0800

    Fix hump nomenclature (#8447)
---
 .../druid/emitter/ambari/metrics/AmbariMetricsEmitterConfig.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/extensions-contrib/ambari-metrics-emitter/src/main/java/org/apache/druid/emitter/ambari/metrics/AmbariMetricsEmitterConfig.java b/extensions-contrib/ambari-metrics-emitter/src/main/java/org/apache/druid/emitter/ambari/metrics/AmbariMetricsEmitterConfig.java
index c7a503f..69c6999 100644
--- a/extensions-contrib/ambari-metrics-emitter/src/main/java/org/apache/druid/emitter/ambari/metrics/AmbariMetricsEmitterConfig.java
+++ b/extensions-contrib/ambari-metrics-emitter/src/main/java/org/apache/druid/emitter/ambari/metrics/AmbariMetricsEmitterConfig.java
@@ -80,7 +80,7 @@ public class AmbariMetricsEmitterConfig
       @JsonProperty("port") Integer port,
       @JsonProperty("protocol") String protocol,
       @JsonProperty("trustStorePath") String trustStorePath,
-      @JsonProperty("trustStoreType") String trustStoretype,
+      @JsonProperty("trustStoreType") String trustStoreType,
       @JsonProperty("trustStorePassword") String trustStorePassword,
       @JsonProperty("batchSize") Integer batchSize,
       @JsonProperty("flushPeriod") Long flushPeriod,
@@ -95,7 +95,7 @@ public class AmbariMetricsEmitterConfig
     this.port = Preconditions.checkNotNull(port, "port can not be null");
     this.protocol = protocol == null ? DEFAULT_PROTOCOL : protocol;
     this.trustStorePath = trustStorePath;
-    this.trustStoreType = trustStoretype;
+    this.trustStoreType = trustStoreType;
     this.trustStorePassword = trustStorePassword;
     this.batchSize = (batchSize == null) ? DEFAULT_BATCH_SIZE : batchSize;
     this.flushPeriod = flushPeriod == null ? DEFAULT_FLUSH_PERIOD_MILLIS : flushPeriod;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org