Skip to content

Commit

Permalink
Merge branch 'main' into support/3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Oct 23, 2023
2 parents 1f7c86b + 57b1758 commit 2daaf91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/zato-server/src/zato/server/service/internal/pickup.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def sync_pickup_file_in_ram(self, ctx:'UpdateCtx') -> 'None':
conf = get_config(conf_base_dir, conf_key, raise_on_error=True, log_exception=False)

user_config_name = get_user_config_name(conf_key)
entry = self.server.user_config.setdefault(user_config_name, Bunch())
entry:'Bunch' = self.server.user_config.setdefault(user_config_name, Bunch())
entry.clear()
entry.update(conf)

Expand All @@ -284,7 +284,7 @@ class OnUpdateStatic(_OnUpdate):
update_type = 'static file'

def sync_pickup_file_in_ram(self, ctx:'UpdateCtx') -> 'None':
_ = self.server.static_config.read_file(ctx.full_path, ctx.file_name)
_:'any_' = self.server.static_config.read_file(ctx.full_path, ctx.file_name)

# ################################################################################################################################
# ################################################################################################################################

0 comments on commit 2daaf91

Please sign in to comment.