Skip to content

Commit

Permalink
Disable metric reporter for consumer
Browse files Browse the repository at this point in the history
  • Loading branch information
patelh committed Mar 3, 2020
1 parent 047f56d commit 4f3a999
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/kafka/manager/actor/cluster/KafkaStateActor.scala
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ case class KafkaManagedOffsetCache(clusterContext: ClusterContext
props.put(KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArrayDeserializer")
props.put(VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArrayDeserializer")
props.put(AUTO_OFFSET_RESET_CONFIG, "latest")
props.put(METRIC_REPORTER_CLASSES_CONFIG, "")
consumerProperties.foreach {
cp => props.putAll(cp.asMap)
}
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name := """cmak"""

/* For packaging purposes, -SNAPSHOT MUST contain a digit */
version := "3.0.0.3"
version := "3.0.0.4"

scalaVersion := "2.12.10"

Expand Down

0 comments on commit 4f3a999

Please sign in to comment.