Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kirgrim committed Apr 6, 2024
1 parent 30b6b6d commit 3324cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neon_utils/log_aggregators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def init_log_aggregators():
config = Configuration()
for service_name, handler in _service_name_to_handler.items():
service_config = _get_log_aggregator_config(config=config, name=service_name)
if not bool(service_config.get('enabled')):
if bool(service_config.get('enabled')):
service_module = importlib.import_module('.', service_name)
getattr(service_module, handler)(config=service_config)

Expand Down

0 comments on commit 3324cc7

Please sign in to comment.