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
I tried many times, and sometimes the program will stuck and I think this is because self.sock.recv() dose not received message. Any method to solve this problem?
class ConnectionHandler:
def init(self):
signal(SIGPIPE, SIG_DFL)
self.sock = zmq.Context().socket(zmq.REQ)
self.sock.connect("tcp://125.0.0.1:5556")
I too have this issue, was able to get the setup to run but it would hang on test output, probably waiting for a return message that is never received. I doubt it's a problem with the class, I know the ports that are showing in docker ps for the corenlp container is just 9000 I'm not sure if that means anything
-- Edit:
After some digging that port is supposed to be 9000, I'm using windows subsystem for linux so I'm going to try and see if there's anything firewalled.
I tried many times, and sometimes the program will stuck and I think this is because self.sock.recv() dose not received message. Any method to solve this problem?
class ConnectionHandler:
def init(self):
signal(SIGPIPE, SIG_DFL)
self.sock = zmq.Context().socket(zmq.REQ)
self.sock.connect("tcp://125.0.0.1:5556")
The text was updated successfully, but these errors were encountered: