Show More
@@ -222,7 +222,7 b' class AuthenticatedZMQStreamHandler(ZMQStreamHandler):' | |||||
222 | # Cookie can't constructor doesn't accept unicode strings for some reason |
|
222 | # Cookie can't constructor doesn't accept unicode strings for some reason | |
223 | msg = msg.encode('utf8', 'replace') |
|
223 | msg = msg.encode('utf8', 'replace') | |
224 | try: |
|
224 | try: | |
225 | self._cookies = Cookie.SimpleCookie(msg) |
|
225 | self.request._cookies = Cookie.SimpleCookie(msg) | |
226 | except: |
|
226 | except: | |
227 | logging.warn("couldn't parse cookie string: %s",msg, exc_info=True) |
|
227 | logging.warn("couldn't parse cookie string: %s",msg, exc_info=True) | |
228 |
|
228 |
General Comments 0
You need to be logged in to leave comments.
Login now