From 2172d3e1179d5a5732ba51bd49d6cf964619c242 Mon Sep 17 00:00:00 2001 From: Vladislav Sukhin Date: Mon, 15 Jul 2024 14:18:10 +0300 Subject: [PATCH] fix: pass disable webhooks for test suites Signed-off-by: Vladislav Sukhin --- pkg/api/v1/client/testsuite.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/api/v1/client/testsuite.go b/pkg/api/v1/client/testsuite.go index 8578a2c057d..d798bcf3b83 100644 --- a/pkg/api/v1/client/testsuite.go +++ b/pkg/api/v1/client/testsuite.go @@ -162,6 +162,7 @@ func (c TestSuiteClient) ExecuteTestSuite(id, executionName string, options Exec ScraperTemplateReference: options.ScraperTemplateReference, PvcTemplate: options.PvcTemplate, PvcTemplateReference: options.PvcTemplateReference, + DisableWebhooks: options.DisableWebhooks, } body, err := json.Marshal(executionRequest) @@ -190,6 +191,7 @@ func (c TestSuiteClient) ExecuteTestSuites(selector string, concurrencyLevel int ScraperTemplateReference: options.ScraperTemplateReference, PvcTemplate: options.PvcTemplate, PvcTemplateReference: options.PvcTemplateReference, + DisableWebhooks: options.DisableWebhooks, } body, err := json.Marshal(executionRequest)