From dc48377dc641c561148198b69e880e1beba2854c Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 18 Mar 2018 14:45:25 +0100 Subject: [PATCH] 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. --- src/borg/archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/archive.py b/src/borg/archive.py index 943d1a414..9f5ddc414 100644 --- a/src/borg/archive.py +++ b/src/borg/archive.py @@ -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()