fix Archive's checkpoint_interval arg default (300 -> 1800s)

the commandline arg default was already at 1800, so likely this is
only a cosmetic fix.
This commit is contained in:
Thomas Waldmann 2018-03-18 14:45:25 +01:00
parent cbb19ca493
commit 8434f8360c
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ class Archive:
"""Failed to encode filename "{}" into file system encoding "{}". Consider configuring the LANG environment variable.""" """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, 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, progress=False, chunker_params=CHUNKER_PARAMS, start=None, start_monotonic=None, end=None,
consider_part_files=False, log_json=False): consider_part_files=False, log_json=False):
self.cwd = os.getcwd() self.cwd = os.getcwd()