summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/Globals.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdiff-backup/rdiff_backup/Globals.py')
-rw-r--r--rdiff-backup/rdiff_backup/Globals.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py
index 35c465b..f472512 100644
--- a/rdiff-backup/rdiff_backup/Globals.py
+++ b/rdiff-backup/rdiff_backup/Globals.py
@@ -40,7 +40,7 @@ conn_bufsize = 98304
# This is used in rorpiter.CacheIndexable. The number represents the
# number of rpaths which may be stuck in buffers when moving over a
# remote connection.
-pipeline_max_length = int(conn_bufsize / 150)
+pipeline_max_length = int(conn_bufsize / 150)*2
# True if script is running as a server
server = None
@@ -171,6 +171,10 @@ security_level = "all"
# deal with paths inside of restrict_path.
restrict_path = None
+# If set, a file will be marked as changed if its inode changes. See
+# the man page under --no-compare-inode for more information.
+compare_inode = 1
+
def get(name):
"""Return the value of something in this module"""