We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c88ea commit 445c42bCopy full SHA for 445c42b
src/murfey/client/rsync.py
@@ -73,10 +73,14 @@ def __init__(
73
self._local = local
74
self._server_url = server_url
75
self._notify = notify
76
+
77
+ # Set rsync destination
78
if local:
79
self._remote = str(basepath_remote)
80
else:
81
self._remote = f"{server_url.hostname}::{basepath_remote}/"
82
+ logger.debug(f"rsync remote path set to {self._remote}")
83
84
# For local tests you can use something along the lines of
85
# self._remote = f"wra62962@ws133:/dls/tmp/wra62962/junk/{basepath_remote}"
86
# to avoid having to set up an rsync daemon
0 commit comments