i tried to move a page that i made in my x86 cpu, but when i tried to put it on work in a nano jetson, i get the next error
127.0.0.1 - - [06/Jan/2021 13:04:30] "GET /favicon.ico HTTP/1.1" 500 -
Traceback (most recent call last):
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 1950, in full_dispatch_request
rv = self.dispatch_request()
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 1926, in dispatch_request
self.raise_routing_exception(req)
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 1908, in raise_routing_exception
raise request.routing_exception
File "/home/mimus/.local/lib/python3.6/site-packages/flask/ctx.py", line 350, in match_request
result = self.url_adapter.match(return_rule=True)
File "/usr/local/lib/python3.6/dist-packages/werkzeug/routing.py", line 1945, in match
raise NotFound()
werkzeug.exceptions.NotFound: 404 Not Found: The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 2464, in __call__
return self.wsgi_app(environ, start_response)
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 2450, in wsgi_app
response = self.handle_exception(e)
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 1867, in handle_exception
reraise(exc_type, exc_value, tb)
File "/home/mimus/.local/lib/python3.6/site-packages/flask/_compat.py", line 39, in reraise
raise value
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 2447, in wsgi_app
response = self.full_dispatch_request()
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 1952, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 1816, in handle_user_exception
return self.handle_http_exception(e)
File "/home/mimus/.local/lib/python3.6/site-packages/flask/app.py", line 1744, in handle_http_exception
return handler(e)
TypeError: page_not_found() takes 0 positional arguments but 1 was given
it says that the error start on the "GET /favicon.ico /HTTP/1.1"; i dont know if it is because i have an ssl_context='adhoc' in the app.run on my main.py or something like that
hope you people can help me whit this issue, thanks in advance
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…