You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/12/09 01:36:56 UTC

[GitHub] [airflow] uranusjr edited a comment on issue #20063: Forward slash in `dag_run_id` gives rise to trouble accessing things through the REST API

uranusjr edited a comment on issue #20063:
URL: https://github.com/apache/airflow/issues/20063#issuecomment-989402511


   I tracked this down to pallets/flask#900, and as Armin mentioned when he closed the ticket, the problem is in WSGI—`%2f` is treated exactly as `/` and there’s no way to work around that in the application layer because `%2f` has already been decoded when it’s received by e.g. Flask.
   
   @andrewgodwin Does ASGI have the same problem? If not, I wonder if it’d work if we move from Gunicorn to Uvicorn and run Flask with `WsgiToAsgi`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org