mirror of
https://github.com/borgbackup/borg.git
synced 2026-03-28 05:13:07 -04:00
Merge pull request #3702 from ThomasWaldmann/fix-checkpoint-interval-default
fix Archive's checkpoint_interval arg default (300 -> 1800s)
This commit is contained in:
commit
60ada21d7a
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ class Archive:
|
|||
"""Failed to encode filename "{}" into file system encoding "{}". Consider configuring the LANG environment variable."""
|
||||
|
||||
def __init__(self, repository, key, manifest, name, cache=None, create=False,
|
||||
checkpoint_interval=300, numeric_owner=False, noatime=False, noctime=False, nobirthtime=False, nobsdflags=False,
|
||||
checkpoint_interval=1800, numeric_owner=False, noatime=False, noctime=False, nobirthtime=False, nobsdflags=False,
|
||||
progress=False, chunker_params=CHUNKER_PARAMS, start=None, start_monotonic=None, end=None,
|
||||
consider_part_files=False, log_json=False):
|
||||
self.cwd = os.getcwd()
|
||||
|
|
|
|||
Loading…
Reference in a new issue