diff --git a/stack_orchestrator/deploy/webapp/registry_mutex.py b/stack_orchestrator/deploy/webapp/registry_mutex.py index 392b74d9..7c835f19 100644 --- a/stack_orchestrator/deploy/webapp/registry_mutex.py +++ b/stack_orchestrator/deploy/webapp/registry_mutex.py @@ -10,7 +10,7 @@ def registry_mutex(): @wraps(func) def wrapper(self, *args, **kwargs): lock_file_path = DEFAULT_LOCK_FILE_PATH - if self.mutex_lock_file is not None: + if self.mutex_lock_file: lock_file_path = self.mutex_lock_file with open(lock_file_path, 'w') as lock_file: diff --git a/stack_orchestrator/deploy/webapp/util.py b/stack_orchestrator/deploy/webapp/util.py index 5f63687c..e587787e 100644 --- a/stack_orchestrator/deploy/webapp/util.py +++ b/stack_orchestrator/deploy/webapp/util.py @@ -114,9 +114,10 @@ def is_id(name_or_id: str): class LaconicRegistryClient: - def __init__(self, config_file, log_file=None): + def __init__(self, config_file, log_file=None, mutex_lock_file=None): self.config_file = config_file self.log_file = log_file + self.mutex_lock_file = mutex_lock_file self.cache = AttrDict( { "name_or_id": {},