-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Description:
I am encountering an error in my logs related to the domain kichat.korn.local and port 3003. The application is trying to connect to this domain on port 3003, but there is no service running on this port, and I am unsure what the domain represents or why the connection is being attempted. This is preventing the service from working as expected. None of the feature work for me.
Error Details:
ConnectionError` at /update_files/update/
HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7b0c9110fa70>: Failed to establish a new connection: [Errno 111] Connection refused'))
Request` Method: POST
Request URL: http://10.255.255.40:8000/update_files/update/
Django Version: 5.1.7
Exception Type: ConnectionError
Exception Value:
HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7b0c9110fa70>: Failed to establish a new connection: [Errno 111] Connection refused'))
Exception Location: /usr/local/lib/python3.12/site-packages/requests/adapters.py, line 700, in send
Observations:
The domain kichat.korn.local and port 3003 are being referenced, but no service is running on port 3003.
This is causing a ConnectionError and preventing the service from working.
I am unsure of the purpose of this domain and port configuration.
What I need help with:
Clarification on what kichat.korn.local is and why the application is attempting to connect to it.
Investigation into why port 3003 is being used when no service is running on it.
Guidance on how to resolve this issue and prevent the application from attempting to connect to an unreachable service.
Thanks,
Also,
I am on Ubuntu desktop 22.04.5 LTS
Logs
Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c3c9d60>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3c9d60>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3c9d60>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | Failed 'check_for_files.tasks.main' (carpet-fish-butter-mississippi) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c183860>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c183860>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c183860>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c183860>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Failed 'check_for_files.tasks.main' (kilo-cardinal-may-one) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c189490>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c189490>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c189490>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c189490>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | Failed 'check_for_files.tasks.main' (uniform-hot-lemon-green) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3cbe90>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c3cbe90>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3cbe90>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3cbe90>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | Failed 'check_for_files.tasks.main' (floor-yellow-magnesium-five) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c183980>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c183980>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c183980>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c183980>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | queueing from default
any_folder | Process-1b056549f79a4888a14d2c0553acb298 processing lion-black-timing-skylark 'check_for_files.tasks.main' [check_files_schedule]
any_folder | Process-d99181439b5b4cc4bc9466c306cda455 processing washington-october-stream-magnesium 'check_for_files.tasks.main' [check_files_schedule]
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Failed 'check_for_files.tasks.main' (washington-october-stream-magnesium) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c188200>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c188200>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c188200>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c188200>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | Failed 'check_for_files.tasks.main' (lion-black-timing-skylark) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c188380>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c188380>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c188380>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c188380>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | queueing from default
any_folder | Process-159bc9371b66427c82f13cef39ca13ea processing edward-texas-sink-fish 'check_for_files.tasks.main' [check_files_schedule]
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Failed 'check_for_files.tasks.main' (edward-texas-sink-fish) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c181700>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c181700>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c181700>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c181700>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | Broker in an atomic transaction
any_folder | Enqueued [default] 33
any_folder | Pushed ('pluto-uranus-seven-august', 'efb207ebcd474b29b5f1e86e2b520276')
any_folder | Process-05e448e6db7347e7a773dfca422944a9 created task pluto-uranus-seven-august from schedule [check_files_schedule]
any_folder | queueing from default
any_folder | Process-8a1606e91c8c457a9b33abf2ea12c0d6 processing pluto-uranus-seven-august 'check_for_files.tasks.main' [check_files_schedule]
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Failed 'check_for_files.tasks.main' (pluto-uranus-seven-august) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3cbf20>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c3cbf20>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3cbf20>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
any_folder | r = adapter.send(request, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
any_folder | raise ConnectionError(e, request=request)
any_folder | requests.exceptions.ConnectionError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3cbf20>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | queueing from default
any_folder | Process-d99181439b5b4cc4bc9466c306cda455 processing wisconsin-virginia-paris-pasta 'check_for_files.tasks.main' [check_files_schedule]
any_folder | Done Updating, task was successful. Found 0 files to add, 0 files that changed and 0 files that got deleted.
any_folder | Failed 'check_for_files.tasks.main' (wisconsin-virginia-paris-pasta) - HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3252b0>: Failed to establish a new connection: [Errno 111] Connection refused')) : Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 198, in _new_conn
any_folder | sock = connection.create_connection(
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
any_folder | raise err
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 73, in create_connection
any_folder | sock.connect(sa)
any_folder | ConnectionRefusedError: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 787, in urlopen
any_folder | response = self._make_request(
any_folder | ^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 488, in _make_request
any_folder | raise new_e
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 464, in _make_request
any_folder | self._validate_conn(conn)
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn
any_folder | conn.connect()
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 704, in connect
any_folder | self.sock = sock = self._new_conn()
any_folder | ^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 213, in _new_conn
any_folder | raise NewConnectionError(
any_folder | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x79382c3252b0>: Failed to establish a new connection: [Errno 111] Connection refused
any_folder |
any_folder | The above exception was the direct cause of the following exception:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
any_folder | resp = conn.urlopen(
any_folder | ^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 841, in urlopen
any_folder | retries = retries.increment(
any_folder | ^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 519, in increment
any_folder | raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='kichat.korn.local', port=3003): Max retries exceeded with url: /api/v1/workspaces (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x79382c3252b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
any_folder |
any_folder | During handling of the above exception, another exception occurred:
any_folder |
any_folder | Traceback (most recent call last):
any_folder | File "/usr/local/lib/python3.12/site-packages/django_q/worker.py", line 103, in worker
any_folder | res = f(*task["args"], **task["kwargs"])
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/app/check_for_files/tasks.py", line 552, in main
any_folder | sort_files.sort_files()
any_folder | File "/app/check_for_files/sort_files.py", line 52, in sort_files
any_folder | response = requests.get("https://kichat.korn.local:3003/api/v1/workspaces", headers=self.headers_json, timeout=10, verify=False).json()
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 73, in get
any_folder | return request("get", url, params=params, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
any_folder | return session.request(method=method, url=url, **kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
any_folder | File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
any_folder | resp = self.send(prep, **send_kwargs)
any_folder | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^