We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4422769 commit 82383c5Copy full SHA for 82383c5
cds_migrator_kit/rdm/migration_config.py
@@ -333,7 +333,9 @@ def _(x): # needed to avoid start time failure with lazy strings
333
334
base_path = os.path.dirname(os.path.realpath(cds_migrator_kit.__file__))
335
logs_dir = os.path.join(base_path, "tmp/logs/")
336
-CDS_MIGRATOR_KIT_LOGS_PATH = logs_dir
+CDS_MIGRATOR_KIT_LOGS_PATH = (
337
+ os.environ.get("INVENIO_CDS_MIGRATOR_KIT_LOGS_PATH") or logs_dir
338
+)
339
340
CDS_MIGRATOR_KIT_STREAM_CONFIG = "cds_migrator_kit/rdm/streams.yaml"
341
0 commit comments