34c91909fc
- Prevent queryformat pattern from expanding (bsc#1079048) - Fix epoch handling for Rhel 6 and 7 (bsc#1068566) - Reverting to current API for split_input - Added: * yumpkg-don-t-use-diff_attr-when-determining-install-.patch - Removed: * fix-for-wrong-version-processing.patch - Fix for wrong version processing during yum pkg install (bsc#1068566) - Older logrotate need su directive (bsc#1071322) OBS-URL: https://build.opensuse.org/request/show/573717 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:saltstack/salt?expand=0&rev=110
26 lines
999 B
Diff
26 lines
999 B
Diff
From 01467c793bddad471ba425918064dffb0ee21bdf Mon Sep 17 00:00:00 2001
|
|
From: Michael Calmer <mc@suse.de>
|
|
Date: Tue, 19 Dec 2017 17:07:19 +0100
|
|
Subject: [PATCH] python3 compatibility fix - got bytes instead of string
|
|
|
|
---
|
|
salt/netapi/rest_cherrypy/tools/websockets.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/salt/netapi/rest_cherrypy/tools/websockets.py b/salt/netapi/rest_cherrypy/tools/websockets.py
|
|
index fe4f9def85..44c5e2fa05 100644
|
|
--- a/salt/netapi/rest_cherrypy/tools/websockets.py
|
|
+++ b/salt/netapi/rest_cherrypy/tools/websockets.py
|
|
@@ -54,6 +54,6 @@ class SynchronizingWebsocket(WebSocket):
|
|
This ensures completion of the underlying websocket connection
|
|
and can be used to synchronize parallel senders.
|
|
'''
|
|
- if message.data == 'websocket client ready':
|
|
+ if message.data.decode('utf-8') == 'websocket client ready':
|
|
self.pipe.send(message)
|
|
self.send('server received message', False)
|
|
--
|
|
2.13.6
|
|
|
|
|