Miretpl commented on code in PR #61018:
URL: https://github.com/apache/airflow/pull/61018#discussion_r2848320495


##########
chart/templates/_helpers.yaml:
##########


Review Comment:
   Hmm, I think I marked a little wrong lines (or something GitHub related) 🤔. 
In general it is changing the:
   ```helm
     {{- $commandArgs := (list) }}
     {{- $commandArgs = append $commandArgs "--local" }}
     {{- $commandArgs = concat $commandArgs (list "--job-type" 
"DagProcessorJob") }}
     - sh
     - -c
     - |
       CONNECTION_CHECK_MAX_COUNT=0 AIRFLOW__LOGGING__LOGGING_LEVEL=ERROR exec 
/entrypoint \
       airflow jobs check {{ join " " $commandArgs }}
   ```
   to
   ```
     - sh
     - -c
     - |
       CONNECTION_CHECK_MAX_COUNT=0 AIRFLOW__LOGGING__LOGGING_LEVEL=ERROR exec 
/entrypoint \
       airflow jobs check --local --job-type DagProcessorJob
   ```
   as `$commandArgs` is not really needed anymore



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to