You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2022/06/30 14:27:54 UTC

[airflow] 05/11: Allow for LOGGING_LEVEL=DEBUG (#23360)

This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit bdddfb2e98845f49de4edd762153fe3cee03dcfd
Author: GApfel <GA...@users.noreply.github.com>
AuthorDate: Fri Apr 29 19:24:39 2022 +0200

    Allow for LOGGING_LEVEL=DEBUG (#23360)
    
    (cherry picked from commit c83d0bfef6664b4c8579ebb91c2af1fac669c2ca)
---
 docs/apache-airflow/start/docker-compose.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/start/docker-compose.yaml b/docs/apache-airflow/start/docker-compose.yaml
index c03e305da1..9896d49665 100644
--- a/docs/apache-airflow/start/docker-compose.yaml
+++ b/docs/apache-airflow/start/docker-compose.yaml
@@ -172,7 +172,7 @@ services:
         function ver() {
           printf "%04d%04d%04d%04d" $${1//./ }
         }
-        airflow_version=$$(gosu airflow airflow version)
+        airflow_version=$$(AIRFLOW__LOGGING__LOGGING_LEVEL=INFO && gosu airflow airflow version)
         airflow_version_comparable=$$(ver $${airflow_version})
         min_airflow_version=2.2.0
         min_airflow_version_comparable=$$(ver $${min_airflow_version})