From b75215b5e5891bb383821fa8e4c4ea9b60f0f621 Mon Sep 17 00:00:00 2001 From: Chaza_Abdelwahab <abdelwahab@teklia.com> Date: Wed, 13 Jul 2022 15:42:01 +0000 Subject: [PATCH] suggested changes --- arkindex_worker/worker/__init__.py | 1 + arkindex_worker/worker/base.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/arkindex_worker/worker/__init__.py b/arkindex_worker/worker/__init__.py index 12a59b44..b7325d84 100644 --- a/arkindex_worker/worker/__init__.py +++ b/arkindex_worker/worker/__init__.py @@ -68,6 +68,7 @@ class ElementsWorker( def __init__(self, description="Arkindex Elements Worker", support_cache=False): super().__init__(description, support_cache) + # Add mandatory argument to process elements self.parser.add_argument( "--elements-list", diff --git a/arkindex_worker/worker/base.py b/arkindex_worker/worker/base.py index b25e2f56..1e63819e 100644 --- a/arkindex_worker/worker/base.py +++ b/arkindex_worker/worker/base.py @@ -170,7 +170,7 @@ class BaseWorker(object): self.api_client = ArkindexClient(**options_from_env()) logger.debug(f"Setup Arkindex API client on {self.api_client.document.url}") - # Load process information except in developer mode + # Load process information assert os.environ.get( "ARKINDEX_PROCESS_ID" ), "ARKINDEX_PROCESS_ID environment variable is not defined" @@ -199,7 +199,7 @@ class BaseWorker(object): # Load all required secrets self.secrets = {name: self.load_secret(name) for name in required_secrets} - # Load worker run configuration when available and not in dev mode + # Load worker run configuration when available if os.environ.get("ARKINDEX_WORKER_RUN_ID"): worker_run = self.request( "RetrieveWorkerRun", id=os.environ["ARKINDEX_WORKER_RUN_ID"] -- GitLab