You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "<string>", line 4, in raise_exc_info
File "/usr/lib/python3.6/site-packages/tornado/gen.py", line 622, in Task
func(*args, callback=_argument_adapter(set_result), **kwargs)
File "/usr/lib/python3.6/site-packages/circusweb/client.py", line 52, in send_message
return self.call(make_message(command, **props), callback)
File "/usr/lib/python3.6/site-packages/circusweb/client.py", line 62, in call
socket.setsockopt(zmq.IDENTITY, uuid.uuid4().hex)
File "zmq/backend/cython/socket.pyx", line 374, in zmq.backend.cython.socket.Socket.set (zmq/backend/cython/socket.c:4610)
TypeError: unicode not allowed, use setsockopt_string
The text was updated successfully, but these errors were encountered:
I've solved this error by going to the /usr/lib/python3.6/site-packages/circusweb/client.py and replacing what the error tolds you:
socket.setsockopt(zmq.IDENTITY, uuid.uuid4().hex)
to socket.setsockopt_string(zmq.IDENTITY, uuid.uuid4().hex)
also you have the same problem in the line 89 of the same file
socket.send(cmd)
to socket.send_string(cmd)
But after all this fixes it stills dosen't work, at least in my case, because when you try to connect to the web console it redirects to itself asking again for the ip to connect
the exception is:
The text was updated successfully, but these errors were encountered: