Fix hump nomenclature (#8447)

This commit is contained in:
Grace Koo 2019-09-01 00:07:29 +08:00 committed by Benedict Jin
parent 0be4a41c06
commit 58fbb69113
1 changed files with 2 additions and 2 deletions

View File

@ -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;