Merge "Don't decode str in LogStreamingHandler"

This commit is contained in:
Zuul 2018-02-13 21:34:15 +00:00 committed by Gerrit Code Review
commit f84de8b64d
1 changed files with 1 additions and 2 deletions

View File

@ -101,8 +101,7 @@ class LogStreamingHandler(object):
)
except Exception as e:
self.log.exception("Finger client exception:")
msg = "Failure from finger client: %s" % e
await ws.send_str(msg.decode('utf8'))
await ws.send_str("Failure from finger client: %s" % e)
return (1000, "No more data")