MCPcopy
hub / github.com/borgbackup/borg / store_delete

Method store_delete

src/borg/repository.py:563–565  ·  view source on GitHub ↗
(self, name, *, deleted=False)

Source from the content-addressed store, hash-verified

561 return self.store.store(name, value)
562
563 def store_delete(self, name, *, deleted=False):
564 self._lock_refresh()
565 return self.store.delete(name, deleted=deleted)
566
567 def store_move(self, name, new_name=None, *, delete=False, undelete=False, deleted=False):
568 self._lock_refresh()

Callers 5

delete_chunkindex_cacheFunction · 0.45
nuke_by_idMethod · 0.45
do_repo_spaceMethod · 0.45
test_missing_manifestFunction · 0.45

Calls 2

_lock_refreshMethod · 0.95
deleteMethod · 0.45

Tested by 1

test_missing_manifestFunction · 0.36