Skip to content

Commit

Permalink
fix: StatsD host default required to be None
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaakola-aiven committed Dec 9, 2024
1 parent 4264981 commit 822dab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/karapace/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class Config(BaseSettings):
name_strategy_validation: bool = True
master_election_strategy: str = "lowest"
protobuf_runtime_directory: str = "runtime"
statsd_host: str = "statsd-exporter"
statsd_host: str | None = None
statsd_port: int = 8125
kafka_schema_reader_strict_mode: bool = False
kafka_retriable_errors_silenced: bool = True
Expand Down

0 comments on commit 822dab0

Please sign in to comment.