You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 19, 2023. It is now read-only.
When making requests to the server (I tried service/list and task/list) I'm getting the following error on the server:
[2020-03-03 11:25:58,925] ERROR in routes: Traceback (most recent call last):
File "/home/alexk/Development/playground/nmt-wizard/nmt-wizard/env/lib/python3.7/site-packages/flask/app.py", line 1949, in full_dispatch_request
rv = self.dispatch_request()
File "/home/alexk/Development/playground/nmt-wizard/nmt-wizard/env/lib/python3.7/site-packages/flask/app.py", line 1935, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/alexk/Development/playground/nmt-wizard/nmt-wizard/server/app/routes.py", line 308, in func_wrapper
return func(*args, **kwargs)
File "/home/alexk/Development/playground/nmt-wizard/nmt-wizard/server/app/routes.py", line 346, in list_services
if any(has_ability(flask.g, "train", pool_entity) forpool_entityin pool_entities):
File "/home/alexk/Development/playground/nmt-wizard/nmt-wizard/env/lib/python3.7/site-packages/werkzeug/local.py", line 347, in __getattr__
returngetattr(self._get_current_object(), name)
AttributeError: '_AppCtxGlobals' object has no attribute 'user'
When making requests to the server (I tried
service/listandtask/list) I'm getting the following error on the server: