summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/ansible-connection3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ansible-connection b/bin/ansible-connection
index 84fdc06fb0..a3e3c7cf41 100755
--- a/bin/ansible-connection
+++ b/bin/ansible-connection
@@ -250,7 +250,8 @@ class Server():
break
time.sleep(1)
timeout -= 1
- return 0, b'\n#SOCKET_PATH#: %s\n' % self.socket_path, ''
+ socket_bytes = to_bytes(self.socket_path, errors='surrogate_or_strict')
+ return 0, b'\n#SOCKET_PATH#: %s\n' % socket_bytes, ''
def communicate(sock, data):