Skip to content

Commit

Permalink
Updater: bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-douglass committed Apr 9, 2020
1 parent 860cf08 commit 492dcf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assemblyline_core/scaler/scaler_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def sync_services(self):
if service.enabled and stage == ServiceStage.Running:
# Compute a hash of service properties not include in the docker config, that
# should still result in a service being restarted when changed
config_hash = hash(sorted(service.config.items()))
config_hash = hash(str(sorted(service.config.items())))

# Build the docker config for the service, we are going to either create it or
# update it so we need to know what the current configuration is either way
Expand Down

0 comments on commit 492dcf1

Please sign in to comment.