You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug in rsync() function fom patchwork/transfers.py:
ifenv.host.count(':') >1:
# Square brackets are mandatory for IPv6 rsync address,# even if port number is not specifiedcmd="rsync %s %s [%s@%s]:%s"% (options, source, user, host, target)
else:
cmd="rsync %s %s %s@%s:%s"% (options, source, user, host, target)
for IPv6 rsync address be "%s@[%s]", not "[%s@%s]" as it is now.
bug in
rsync()
function fompatchwork/transfers.py
:for IPv6 rsync address be "%s@[%s]", not "[%s@%s]" as it is now.
patchwork source code: https://github.com/fabric/patchwork/blob/master/patchwork/transfers.py#L111
details about IPv6 adresses with rsync: https://serverfault.com/questions/420158
The text was updated successfully, but these errors were encountered: