From d1b8a7862a2ebb081ba8677ee7e65d6ee4e0dd74 Mon Sep 17 00:00:00 2001 From: blewisCycle Date: Wed, 17 Jan 2024 09:14:45 -0800 Subject: [PATCH] update webhook wait_on to retry_on --- .../schemas/pipelines/steps/webhooks/WebhookStepOptions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/schemas/pipelines/steps/webhooks/WebhookStepOptions.yml b/components/schemas/pipelines/steps/webhooks/WebhookStepOptions.yml index 85687481..30cdde07 100644 --- a/components/schemas/pipelines/steps/webhooks/WebhookStepOptions.yml +++ b/components/schemas/pipelines/steps/webhooks/WebhookStepOptions.yml @@ -26,7 +26,7 @@ properties: description: A list of http response codes that will trigger a failure. items: type: integer - wait_on: + retry_on: nullable: true type: object required: @@ -34,10 +34,10 @@ properties: properties: not: type: boolean - description: If true, will wait on any codes NOT defined in the http_codes array. + description: If true, will retry on any codes NOT defined in the http_codes array. http_codes: type: array nullable: true - description: A list of http response codes that will trigger a wait. + description: A list of http response codes that will trigger a retry. items: type: integer