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 2022/10/25 16:46:26 UTC

[GitHub] [airflow] Flogue opened a new issue, #27268: #26415 Broke flower dashboard

Flogue opened a new issue, #27268:
URL: https://github.com/apache/airflow/issues/27268

   ### Official Helm Chart version
   
   1.7.0 (latest released)
   
   ### Apache Airflow version
   
   2.4.1
   
   ### Kubernetes Version
   
   1.24.6
   
   ### Helm Chart configuration
   
   flower:
     enabled: true
   
   ### Docker Image customisations
   
   None
   
   ### What happened
   
   Flower dashboard is unreachable.
   "Failed to load resource: net::ERR_CONNECTION_RESET" in browser console
   
   ### What you think should happen instead
   
   Dashboard should load.
   
   ### How to reproduce
   
   Just enable flower: 
   
   ```
   helm install airflow-rl apache-airflow/airflow --namespace airflow-np --set flower.enables=true
   kubectl port-forward svc/airflow-rl-flower 5555:5555 --namespace airflow-np
   ```
   
   ### Anything else
   
   A quick fix for this is:
   
   ```
   config:
     celery:
       flower_url_prefix: ''
   ```
   
   Basically, the new default value '/' makes it so the scripts and links read:
   `<script src="//static/js/jquery....`
   where it should be:
   `<script src="/static/js/jquery....`
   
   
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


-- 
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.apache.org

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


[GitHub] [airflow] potiuk closed issue #27268: #26415 Broke flower dashboard

Posted by GitBox <gi...@apache.org>.
potiuk closed issue #27268: #26415 Broke flower dashboard
URL: https://github.com/apache/airflow/issues/27268


-- 
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