-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FileNotFoundError: [WinError 3] The system cannot find the specified path #5
Comments
127.0.0.1 - - [17/Jun/2021 08:58:05] "OPTIONS /api/datasets HTTP/1.1" 200 - project.py
|
127.0.0.1 - - [17/Jun/2021 09:09:32] "OPTIONS /api/models HTTP/1.1" 200 - #endpoints.py# |
127.0.0.1 - - [17/Jun/2021 09:16:31] "OPTIONS /api/models HTTP/1.1" 200 -
|
#endpoints.py#
|
#error saving model#
#endpoints.py#
|
127.0.0.1 - - [17/Jun/2021 08:31:05] "GET /api/datasets HTTP/1.1" 500 -
Traceback (most recent call last):
File "C:<path>\ruler\env\lib\site-packages\flask\app.py", line 2463, in call
return self.wsgi_app(environ, start_response)
File "C:<path>\env\lib\site-packages\flask\app.py", line 2449, in wsgi_app
response = self.handle_exception(e)
File "C:<path>\env\lib\site-packages\flask_cors\extension.py", line 165, in wrapped_function
return cors_after_request(app.make_response(f(*args, **kwargs)))
File "C:<path>\env\lib\site-packages\flask\app.py", line 1866, in handle_exception
reraise(exc_type, exc_value, tb)
File "C:<path>\ruler\env\lib\site-packages\flask_compat.py", line 39, in reraise
raise value
File "C:<path>\env\lib\site-packages\flask\app.py", line 2446, in wsgi_app
response = self.full_dispatch_request()
File "C:<path>\env\lib\site-packages\flask\app.py", line 1951, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:<path>\env\lib\site-packages\flask_cors\extension.py", line 165, in wrapped_function
return cors_after_request(app.make_response(f(*args, **kwargs)))
File "C:<path>\ruler\env\lib\site-packages\flask\app.py", line 1820, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:<path>\env\lib\site-packages\flask_compat.py", line 39, in reraise
raise value
File "C:<path>\env\lib\site-packages\flask\app.py", line 1949, in full_dispatch_request
rv = self.dispatch_request()
File "C:<path>\env\lib\site-packages\flask\app.py", line 1935, in dispatch_request
return self.view_functionsrule.endpoint
File "C:<path>\env\lib\site-packages\connexion\decorators\decorator.py", line 48, in wrapper
response = function(request)
File "C:<path>\env\lib\site-packages\connexion\decorators\uri_parsing.py", line 173, in wrapper
response = function(request)
File "C:<path>\env\lib\site-packages\connexion\decorators\parameter.py", line 126, in wrapper
return function(**kwargs)
File "C:<path>\ruler\server\api\endpoints.py", line 83, in get_datasets
return listdir('datasets')
File "C:<path>\ruler\server\api\endpoints.py", line 79, in listdir
return sorted([f for f in os.listdir(dirname) if not should_ignore(f)], key=lambda f: f.lower())
FileNotFoundError: [WinError 3] O sistema não pode encontrar o caminho especificado: 'datasets'
def get_datasets(): """List available datasets""" return listdir('datasets')
The text was updated successfully, but these errors were encountered: