I encountered a timeout error when running the run.py script with the task1.json file. The script attempts to connect to a local server (IP 20.20.20.21, port 5000), but it fails to establish the connection, resulting in the following error:
$ python3 run.py --task-file task1.json
Waiting for the server to start...
Failed to get hello: HTTPConnectionPool(host='20.20.20.21', port=5000): Max retries exceeded with url: /probe (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x7fcf4c41c5e0>, 'Connection to 20.20.20.21 timed out. (connect timeout=7)'))
Retrying...
I tried waiting and retrying the process, but the issue persists. I would appreciate any assistance in understanding possible causes and recommended solutions for this timeout error.
I encountered a timeout error when running the run.py script with the task1.json file. The script attempts to connect to a local server (IP 20.20.20.21, port 5000), but it fails to establish the connection, resulting in the following error:
$ python3 run.py --task-file task1.json Waiting for the server to start... Failed to get hello: HTTPConnectionPool(host='20.20.20.21', port=5000): Max retries exceeded with url: /probe (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x7fcf4c41c5e0>, 'Connection to 20.20.20.21 timed out. (connect timeout=7)')) Retrying...
I tried waiting and retrying the process, but the issue persists. I would appreciate any assistance in understanding possible causes and recommended solutions for this timeout error.
Kind Regards.