Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs #1108

Merged
merged 2 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/.docker/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mkdocs-material
mkdocs-material==9.1.17
mkdocs-redirects
mkdocstrings
mkdocstrings-python
Expand Down
18 changes: 9 additions & 9 deletions docs/src/design/tables/filepath.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ of the pipeline, or, if they are, that records in the pipeline are
updated accordingly. A safe method of changing `filepath` data is
as follows:

1. Delete the `filepath` database record.
This will ensure that any downstream records in the pipeline depending
on the `filepath` record are purged from the database.
2. Modify `filepath` data.
3. Re-insert corresponding the `filepath` record.
This will add the record back to DataJoint with an updated file checksum.
4. Compute any downstream dependencies, if needed.
This will ensure that downstream results dependent on the `filepath`
record are updated to reflect the newer `filepath` contents.
1. Delete the `filepath` database record.
This will ensure that any downstream records in the pipeline depending
on the `filepath` record are purged from the database.
2. Modify `filepath` data.
3. Re-insert corresponding the `filepath` record.
This will add the record back to DataJoint with an updated file checksum.
4. Compute any downstream dependencies, if needed.
This will ensure that downstream results dependent on the `filepath`
record are updated to reflect the newer `filepath` contents.

### Disable Fetch Verification

Expand Down