From c7df1230c9d8e193e914c1fceb26e3a6df73ce0f Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Wed, 10 Apr 2024 08:50:28 +1200 Subject: [PATCH] fix(cron): Add the missing parameter name for the cron workflow (#522) #### Motivation Parameter name is defined incorrectly in the cron workflow. #### Modification fix the name in two cron workflow #### Checklist _If not applicable, provide explanation of why._ - [ ] Tests updated - no test - [ ] Docs updated - no doc - [ ] Issue linked in Title - no ticket --- workflows/cron/cron-vector-etl-roads-addressing.yaml | 2 +- workflows/cron/cron-vector-etl.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workflows/cron/cron-vector-etl-roads-addressing.yaml b/workflows/cron/cron-vector-etl-roads-addressing.yaml index 6a2fce4c7..850ff49ac 100644 --- a/workflows/cron/cron-vector-etl-roads-addressing.yaml +++ b/workflows/cron/cron-vector-etl-roads-addressing.yaml @@ -20,7 +20,7 @@ spec: name: basemaps-vector-etl arguments: parameters: - - filename: + - name: 'filename' value: '53382-nz-roads-addressing' - name: 'retry' value: '2' diff --git a/workflows/cron/cron-vector-etl.yaml b/workflows/cron/cron-vector-etl.yaml index 8f9fea8eb..5aff27e8d 100644 --- a/workflows/cron/cron-vector-etl.yaml +++ b/workflows/cron/cron-vector-etl.yaml @@ -20,7 +20,7 @@ spec: name: basemaps-vector-etl arguments: parameters: - - filename: + - name: 'filename' value: 'topographic' - name: 'retry' value: '2'