I am getting "ConnectionRefusedError: [Errno 111] Connection refused" while doing pickle.load()
What does than actually mean? How do I properly unpickle such object? I know that the object I am trying to unpickle contains some useful data but I can't get to it.
I am passing this object to threads and subprocesses
obj = {
'var1': multiprocessing.Manager().Queue(),
'var2': 'some data'
}
What an I doing wrong?