Skip to content

Commit

Permalink
fix(logger_log_level): use map for logger_log_level in scylla.yaml
Browse files Browse the repository at this point in the history
logger_log_level Scylla configuration parameter is a map of logger class
to logger level, so we should use dict instead of string for setting this in
scylla_yaml.py

(cherry picked from commit 7843142)
  • Loading branch information
dimakr authored and soyacz committed Oct 31, 2024
1 parent ccb1955 commit 9d7ca02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdcm/provision/scylla_yaml/scylla_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def set_authorizer(cls, authorizer: str):
redis_database_count: int = None # 16
redis_keyspace_replication_strategy: Literal['SimpleStrategy', 'NetworkTopologyStrategy'] = None # 'SimpleStrategy'
default_log_level: str = None # None
logger_log_level: str = None # None
logger_log_level: dict = None # None
log_to_stdout: bool = None # None
log_to_syslog: bool = None # None
authenticator_user: str = None # None
Expand Down

0 comments on commit 9d7ca02

Please sign in to comment.