Skip to content
This repository was archived by the owner on Mar 7, 2023. It is now read-only.

Issue on log in with form validation #6

@gyoder

Description

@gyoder

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions