diff --git a/confluent_server/confluent/syncfiles.py b/confluent_server/confluent/syncfiles.py index b279ff3c..5037ea30 100644 --- a/confluent_server/confluent/syncfiles.py +++ b/confluent_server/confluent/syncfiles.py @@ -120,7 +120,7 @@ def sync_list_to_node(sl, node, suffixes): os.path.join(targdir, suffixes['merge']), True) sshutil.prep_ssh_key('/etc/confluent/ssh/automation') output = subprocess.check_output( - ['rsync', '-rvLpgotDAX', targdir + '/', 'root@{}:/'.format(node)], timeout=86400) + ['rsync', '-rvLD', targdir + '/', 'root@{}:/'.format(node)], timeout=86400) except Exception as e: if 'CalledProcessError' not in repr(e): # https://github.com/eventlet/eventlet/issues/413