mirror of https://github.com/apache/druid.git
Fix spacing in KafkaEmitterConfig (#4663)
This commit is contained in:
parent
f8dcb05fd1
commit
59a2507268
|
@ -55,7 +55,7 @@ public class KafkaEmitterConfig
|
||||||
this.metricTopic = Preconditions.checkNotNull(metricTopic, "metric.topic can not be null");
|
this.metricTopic = Preconditions.checkNotNull(metricTopic, "metric.topic can not be null");
|
||||||
this.alertTopic = Preconditions.checkNotNull(alertTopic, "alert.topic can not be null");
|
this.alertTopic = Preconditions.checkNotNull(alertTopic, "alert.topic can not be null");
|
||||||
this.clusterName = clusterName;
|
this.clusterName = clusterName;
|
||||||
this.kafkaProducerConfig = kafkaProducerConfig == null? ImmutableMap.<String,String>of() : kafkaProducerConfig;
|
this.kafkaProducerConfig = kafkaProducerConfig == null ? ImmutableMap.of() : kafkaProducerConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
|
|
Loading…
Reference in New Issue