Commit d03908af authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

refactor(dag): 移除任务配置中的重试设置以简化流程

parent ddd50faa
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -22,5 +22,4 @@ tasks:
  - name: QC0
    image: csst-cpic-l1-qc0
    command: ["run", "{{ params.input }}"]
    retries: 1
    retry_delay_minutes: 5
+1 −2
Original line number Diff line number Diff line
@@ -23,5 +23,4 @@ tasks:
  - name: CPIC
    image: csst-cpic-l1
    command: ["run", "{{ params.input }}"]
    retries: 1
    retry_delay_minutes: 5
+0 −1
Original line number Diff line number Diff line
@@ -22,4 +22,3 @@ tasks:
  - name: ECHO
    image: csst-echo
    command: ["run", "{{ params.input }}"]
    retries: 1
+1 −3
Original line number Diff line number Diff line
@@ -23,11 +23,9 @@ tasks:
  - name: L1
    image: csst-hstdm-l1
    command: ["run", "{{ params.input }}"]
    retries: 1
    retry_delay_minutes: 5


  - name: L2
    image: csst-hstdm-l2
    command: ["run", "{{ params.input }}"]
    dependencies: [L1]
    retries: 1
+1 −2
Original line number Diff line number Diff line
@@ -23,5 +23,4 @@ tasks:
  - name: L1
    image: csst-ifs-l1
    command: ["run", "{{ params.input }}"]
    retries: 1
    retry_delay_minutes: 5
Loading