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 has been archived by the owner on Sep 18, 2023. It is now read-only.
We're setting os.environ["WERKZEUG_RUN_MAIN"] = "true" in order to suppress the printing to the console of Flask information (as mentioned in cs01/gdbgui#425 (comment) )
The workaround for the moment appears to be downgrading werkzeug pip install 'Werkzeug<2.1.0'
The text was updated successfully, but these errors were encountered:
This fixes a onflict with Werkzeug version 2.1.0 and newer which caused a
`KeyError: 'WERKZEUG_SERVER_FD'`.
This fix limits the max version of Werkzeug. A more permanent fix will be to
move away from using the Flask development server to another WSGI listener.
Fixesmozilla-iam#243
This line in
maws
mozilla-aws-cli/mozilla_aws_cli/listener.py
Line 237 in 6de1d92
appears to be triggering this issue pallets/werkzeug#2368
We're setting
os.environ["WERKZEUG_RUN_MAIN"] = "true"
in order to suppress the printing to the console of Flask information (as mentioned in cs01/gdbgui#425 (comment) )The workaround for the moment appears to be downgrading werkzeug
pip install 'Werkzeug<2.1.0'
The text was updated successfully, but these errors were encountered: