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
Hi @rkumar-goodrx, skip_error_handlers was deprecated in Connexion 3. It was undocumented and unclear why it was originally added. The way connexion registers error handlers has also been reworked.
@RobbeSneyders Its not used directly by us.But used by one of the external libraries related to airflow.
I would have been better if there is backward compatibility to prevent these errors.
We bumped the major version to indicate breaking changes. Please read this issue on the Airflow repo to understand how you can correctly install Airflow and prevent this.
Description\
We are getting Getting error 'skip_error_handlers' in connexion==3.0.0
but the error is not in connexion==2.14.2
connexion_app = App(name, specification_dir=spec_dir, skip_error_handlers=True)
E TypeError: init() got an unexpected keyword argument 'skip_error_handlers'
Expected behaviour
It should not give error TypeError: init() got an unexpected keyword argument 'skip_error_handlers'
Actual behaviour
It should not give any errors
Steps to reproduce
connexion_app = App(name, specification_dir=spec_dir, skip_error_handlers=True)
Additional info:
Output of the commands:
python --version
pip show connexion | grep "^Version\:"
The text was updated successfully, but these errors were encountered: