mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-29 11:16:43 +00:00
rcompress: use get/put_manifest
This commit is contained in:
parent
b637542dcf
commit
c292ee25c5
1 changed files with 2 additions and 2 deletions
|
@ -123,8 +123,8 @@ def checkpoint_func():
|
|||
|
||||
if not isinstance(repository, (Repository3, RemoteRepository3)):
|
||||
# start a new transaction
|
||||
data = repository.get(Manifest.MANIFEST_ID)
|
||||
repository.put(Manifest.MANIFEST_ID, data)
|
||||
data = repository.get_manifest()
|
||||
repository.put_manifest(data)
|
||||
uncommitted_chunks += 1
|
||||
|
||||
pi = ProgressIndicatorPercent(
|
||||
|
|
Loading…
Reference in a new issue