kunaljubce opened a new pull request, #1151: URL: https://github.com/apache/airflow-site/pull/1151
Relates to https://github.com/apache/airflow/issues/46656. So apparently the celery graphviz is not loading due to a content security policy (CSP) of the website. The `frame-src` directive in CSP specifies valid sources for nested browsing contexts, such as those created by `<frame>` and `<iframe>` elements. In this case, the policy only allows content to be framed from `https://www.youtube-nocookie.com` and `https://www.youtube.com`. Since the URL https://airflow.apache.org/docs/apache-airflow-providers-celery/stable/_images/graphviz-1eeec310b5d1b747eecc7861ba8b33cc7bdcd23c.svg is not included in the allowed sources, the browser blocks it from being framed. To fix this, we're adding `https://airflow.apache.org;` to the CSP and this should hopefully fix the problem. -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org