Change to unicode channel names

This commit is contained in:
Andrew Godwin 2016-01-02 09:18:22 -08:00
parent f38f2a442e
commit 3ac43cacf0
2 changed files with 4 additions and 3 deletions

View File

@ -25,7 +25,7 @@ class WebRequest(http.Request):
# Easy factory link
self.factory = self.channel.factory
# Make a name for our reply channel
self.reply_channel = self.factory.channel_layer.new_channel(b"!http.response.?")
self.reply_channel = self.factory.channel_layer.new_channel("!http.response.?")
# Tell factory we're that channel's client
self.last_keepalive = time.time()
self.factory.reply_protocols[self.reply_channel] = self
@ -66,7 +66,7 @@ class WebRequest(http.Request):
else:
# Send request message
logging.debug("HTTP %s request for %s", self.method, self.reply_channel)
self.factory.channel_layer.send(b"http.request", {
self.factory.channel_layer.send("http.request", {
"reply_channel": self.reply_channel,
"method": self.method,
"get": self.get,

View File

@ -1,7 +1,8 @@
from __future__ import unicode_literals
import time
from autobahn.twisted.websocket import WebSocketServerProtocol, WebSocketServerFactory
from django.http import parse_cookie