Skip to content

Commit

Permalink
chore: minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Jul 30, 2024
1 parent 1cf6bad commit 18ea8b3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/kiara/context/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 18ea8b3

Please sign in to comment.