cyrildiagne / ar-cutpaste

Cut and paste your surroundings using AR

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Connection object at 0x000001C8BE9C89C8>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))

ShyamalKhachane opened this issue · comments

PS : I have disabled my firewall

Traceback (most recent call last):
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\connection.py", line 160, in _new_conn
(self._dns_host, self.port), self.timeout, **extra_kw
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\util\connection.py", line 61, in create_connection
for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
File "F:\Anaconda\lib\socket.py", line 748, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno 11001] getaddrinfo failed

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\connectionpool.py", line 677, in urlopen
chunked=chunked,
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\connectionpool.py", line 392, in _make_request
conn.request(method, url, **httplib_request_kw)
File "F:\Anaconda\lib\http\client.py", line 1244, in request
self._send_request(method, url, body, headers, encode_chunked)
File "F:\Anaconda\lib\http\client.py", line 1290, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "F:\Anaconda\lib\http\client.py", line 1239, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "F:\Anaconda\lib\http\client.py", line 1026, in _send_output
self.send(msg)
File "F:\Anaconda\lib\http\client.py", line 966, in send
self.connect()
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\connection.py", line 187, in connect
conn = self._new_conn()
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\connection.py", line 172, in _new_conn
self, "Failed to establish a new connection: %s" % e
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x000001C8BE628E88>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\requests\adapters.py", line 449, in send
timeout=timeout
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\connectionpool.py", line 727, in urlopen
method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\util\retry.py", line 446, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='u2net.predictor.tenant-compass.global.coreweave.com', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000001C8BE628E88>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 2463, in call
return self.wsgi_app(environ, start_response)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 2449, in wsgi_app
response = self.handle_exception(e)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask_cors\extension.py", line 161, in wrapped_function
return cors_after_request(app.make_response(f(*args, **kwargs)))
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 1866, in handle_exception
reraise(exc_type, exc_value, tb)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask_compat.py", line 39, in reraise
raise value
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 2446, in wsgi_app
response = self.full_dispatch_request()
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 1951, in full_dispatch_request
rv = self.handle_user_exception(e)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask_cors\extension.py", line 161, in wrapped_function
return cors_after_request(app.make_response(f(*args, **kwargs)))
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 1820, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask_compat.py", line 39, in reraise
raise value
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 1949, in full_dispatch_request
rv = self.dispatch_request()
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\flask\app.py", line 1935, in dispatch_request
return self.view_functionsrule.endpoint
File "F:\AR Copy Paste\ar-cutpaste\server\src\main.py", line 42, in ping
r = requests.get(args.basnet_service_ip, headers={'Host': args.basnet_service_host})
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\requests\api.py", line 76, in get
return request('get', url, params=params, **kwargs)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\requests\api.py", line 61, in request
return session.request(method=method, url=url, **kwargs)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\requests\sessions.py", line 530, in request
resp = self.send(prep, **send_kwargs)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\requests\sessions.py", line 643, in send
r = adapter.send(request, **kwargs)
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\requests\adapters.py", line 516, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='u2net.predictor.tenant-compass.global.coreweave.com', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000001C8BE628E88>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
INFO:root: CUT
INFO:root: > sending to BASNet...
INFO:werkzeug:192.168.0.102 - - [26/May/2021 08:48:47] "�[35m�[1mPOST /cut HTTP/1.1�[0m" 500 -
Traceback (most recent call last):
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\connection.py", line 160, in _new_conn
(self._dns_host, self.port), self.timeout, **extra_kw
File "F:\AR Copy Paste\ar-cutpaste\server\venv\lib\site-packages\urllib3\util\connection.py", line 61, in create_connection
for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
File "F:\Anaconda\lib\socket.py", line 748, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno 11001] getaddrinfo failed