1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-22 06:01:54 +00:00

Merge pull request #3724 from milkey-mouse/fix-checkpoint-interval-default-fp1.2

fix Archive's checkpoint_interval arg default (1.2 forward-port)
This commit is contained in:
TW 2018-03-25 00:31:43 +01:00 committed by GitHub
commit c4528ca115
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -292,7 +292,7 @@ class IncompatibleFilesystemEncodingError(Error):
"""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, nobsdflags=False,
checkpoint_interval=1800, numeric_owner=False, noatime=False, noctime=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()