This repository was archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Issue on log in with form validation #6
Copy link
Copy link
Open
Description
When attempting to start up a server and log in I was getting the following message.
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 2525, in wsgi_app
response = self.full_dispatch_request()
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1822, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1820, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1796, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "/opt/minos/engine/./server.py", line 462, in login
if form.validate_on_submit():
File "/usr/local/lib/python3.8/dist-packages/flask_wtf/form.py", line 86, in validate_on_submit
return self.is_submitted() and self.validate(extra_validators=extra_validators)
TypeError: validate() got an unexpected keyword argument 'extra_validators'
Going into /opt/minos/engine/server.py and changing if form.validate_on_submit(): to if True: fixed the issue for me and works for what I need to do with it but that does remove authentication from the login which is not ideal. Just putting this here if anyone needs to know. This was running on a Ubuntu 20.04 docker container
Metadata
Metadata
Assignees
Labels
No labels