From 18ea8b31ebcce8224c32e6232e2b5eacac04a64c Mon Sep 17 00:00:00 2001 From: Markus Binsteiner Date: Tue, 30 Jul 2024 18:13:15 +0200 Subject: [PATCH] chore: minor cleanup --- src/kiara/context/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/kiara/context/config.py b/src/kiara/context/config.py index 9bfd9206e..41feee418 100644 --- a/src/kiara/context/config.py +++ b/src/kiara/context/config.py @@ -285,12 +285,17 @@ def create_from_sqlite_db(cls, db_path: Path) -> "KiaraContextConfig": archive_type="filesystem_workflow_store", config={"archive_path": workflow_store_path}, ) + metadata_store_config = KiaraArchiveConfig( + archive_type="sqlite_metadata_store", + config={"sqlite_db_path": db_path.as_posix()}, + ) archives = { DEFAULT_DATA_STORE_MARKER: data_store_config, DEFAULT_ALIAS_STORE_MARKER: alias_store_config, DEFAULT_JOB_STORE_MARKER: job_store_config, DEFAULT_WORKFLOW_STORE_MARKER: workflow_store_config, + DEFAULT_METADATA_STORE_MARKER: metadata_store_config, } context_config = cls(