Skip to content

Commit

Permalink
removed duplicate name
Browse files Browse the repository at this point in the history
  • Loading branch information
LanderOtto committed Jan 6, 2024
1 parent 7341a2f commit 9a71c59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
python -m pip install -r docs/requirements.txt
- name: "Build documentation and check for consistency"
env:
CHECKSUM: "9928f145446f60c76fc86b840c5630a66264a6cacde5ba28f36679ff743fb797"
CHECKSUM: "682ef34828ea3d8787aaf0facf4199babe93e44d3451afdfaec35c41d70f0ce4"
run: |
cd docs/
HASH="$(make checksum | tail -n1)"
Expand Down
3 changes: 2 additions & 1 deletion docs/source/ext/database.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Each ``PersistableEntity`` is identified by a unique numerical ``persistent_id``

The ``load`` method receives three input parameters: the current execution ``context``, the ``persistent_id`` of the instance that should be loaded, and a ``loading_context`` (see :ref:`DatabaseLoadingContext <DatabaseLoadingContext>`).

Database
Persistence
========

The ``Database`` interface, defined in the ``streamflow.core.persistence`` module, contains all the methods to create, modify, and retrieve this metadata. Data deletion is unnecessary, as StreamFlow never removes existing records. Internally, the ``save`` and ``load`` methods call one or more of these methods to perform the desired operations.
Expand Down Expand Up @@ -348,3 +348,4 @@ Instead, the ``add_step``, ``add_port`` and ``add_workflow`` methods do not set
def __init__(self, workflow: Workflow):
super().__init__()
self.workflow: Workflow = workflow

0 comments on commit 9a71c59

Please sign in to comment.