Skip to content

Commit

Permalink
Merge pull request #1386 from samson0v/master
Browse files Browse the repository at this point in the history
Fixed sending remote logging level
  • Loading branch information
imbeacon authored May 2, 2024
2 parents f35630b + ccf5419 commit 3c071b8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def __init__(self, gateway, config):
self.in_process = False
self._active_connectors = []
self._handlers = {
'general_configuration': self._handle_general_configuration_update,
'storage_configuration': self._handle_storage_configuration_update,
'grpc_configuration': self._handle_grpc_configuration_update,
'logs_configuration': self._handle_logs_configuration_update,
Expand Down Expand Up @@ -193,6 +192,10 @@ def process_config_request(self, config):

self.in_process = True

if 'general_configuration' in config.keys():
self._handle_general_configuration_update(config['general_configuration'])
config.pop('general_configuration', None)

try:
for attr_name in config.keys():
if 'deleted' in attr_name:
Expand Down

0 comments on commit 3c071b8

Please sign in to comment.