You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ds...@apache.org on 2022/06/15 19:34:38 UTC

[airflow] branch main updated: Fix semver compare number for `jobs check` command (#24480)

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

dstandish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new e8fdc304ec Fix semver compare number for `jobs check` command (#24480)
e8fdc304ec is described below

commit e8fdc304ec0429a9cefe93e4c8442d4ee5c9ff49
Author: Daniel Standish <15...@users.noreply.github.com>
AuthorDate: Wed Jun 15 12:34:29 2022 -0700

    Fix semver compare number for `jobs check` command (#24480)
    
    From what I can tell this command was added in 2.1.0 not 2.0.0.
---
 chart/templates/_helpers.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chart/templates/_helpers.yaml b/chart/templates/_helpers.yaml
index ed56d3ef84..8f61e6ca95 100644
--- a/chart/templates/_helpers.yaml
+++ b/chart/templates/_helpers.yaml
@@ -620,7 +620,7 @@ Create the name of the cleanup service account to use
 
 {{define "scheduler_liveness_check_command"}}
 
-  {{- if semverCompare ">=2.0.0" .Values.airflowVersion }}
+  {{- if semverCompare ">=2.1.0" .Values.airflowVersion }}
   - sh
   - -c
   - |