Skip to content

Commit

Permalink
Removing the valid metadata KV on each run before termination
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsitsi committed Oct 23, 2024
1 parent 292fd5d commit cee1d59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tiledb/bioimg/converters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,10 @@ def to_tiledb(
# Overwrite destination group
rw_group.m_group.delete(recursive=True)
overwrite = True
else:
# If group is valid we remove the KV and we will re-introduce it
# after the current ingestion process as the final step
del rw_group.w_group.meta["valid"]

if overwrite:
# Re-initializes the destination Group for re-ingestion
Expand Down

0 comments on commit cee1d59

Please sign in to comment.