79603371

Date: 2025-05-02 12:29:54
Score: 1.5
Natty:
Report link

The issue was indeed related to the apache-airflow-providers-fab package, as suggested by @bcincy's comment.

Solution

x-airflow-common:
  &airflow-common
  # ... other common settings ...
  environment:
    &airflow-common-env
    # ... existing environment variables (including AIRFLOW__CORE__BASE_URL) ...

    # Modified this line to add the FAB provider package:
    _PIP_ADDITIONAL_REQUIREMENTS: ${_PIP_ADDITIONAL_REQUIREMENTS:-} apache-airflow-providers-fab==2.0.2

    # ... rest of environment variables ...
docker compose down
docker compose up -d
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @bcincy's
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: foxhq