-
Notifications
You must be signed in to change notification settings - Fork 4
Conversation
bf4adc8
to
6016924
Compare
Took the opportunity to fix some small issues in the aggreggations and its tests |
6016924
to
7bf4015
Compare
…n, updated partialupdate but needs testing
7bf4015
to
56fd71c
Compare
docker-compose.yaml
Outdated
@@ -61,6 +61,7 @@ x-airflow-common: &airflow-common | |||
AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION: "true" | |||
AIRFLOW__CORE__LOAD_EXAMPLES: "false" | |||
AIRFLOW__API__AUTH_BACKENDS: "airflow.api.auth.backend.basic_auth,airflow.api.auth.backend.session" | |||
# AIRFLOW__WEBSERVER__RELOAD_ON_PLUGIN_CHANGE: "true" # used when modifying plugins |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why remove this one? It's useful when you modify plugins
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you are right, although we should add set it to false in our kubernetes as it may cause high memory usage and race conditions:
https://airflow.apache.org/docs/apache-airflow/stable/configurations-ref.html#reload-on-plugin-change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, we have to update it here actually
2e74b7d
to
a7c1dcd
Compare
a7c1dcd
to
da9db83
Compare
Fixed aggreggations, added swagger documentation, updated partialupdate but needs testing
Fixes 483