Skip to content

Commit

Permalink
squash - Create separate tasks for filesystem and S3
Browse files Browse the repository at this point in the history
  • Loading branch information
alanking committed Sep 25, 2024
1 parent 57adb49 commit 7954e19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions irods_capability_automated_ingest/tasks/filesystem_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ def filesystem_sync_path(self, meta):
error = f"physical path is not readable [{full_path}]"
logger.error(error)

# TODO: Should this raise an Exception?
# TODO(#277): Should this raise an Exception?
# raise RuntimeError(error)

# TODO: ...or put it in the chunk, like we've been doing?
# TODO(#277): ...or put it in the chunk, like we've been doing?
chunk[full_path] = {}

# TODO: ...or ONLY continue?
# TODO(#277): ...or ONLY continue?
continue

if obj.is_dir() and not obj.is_symlink() and not obj.is_file():
Expand Down

0 comments on commit 7954e19

Please sign in to comment.