From 5abb4d40f59574f85c7466fcf0f9a0ffe3f552b7 Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Mon, 29 Apr 2024 14:03:59 -0500 Subject: [PATCH] Fix: apply a mitigation for worflowEnvironmentId removed (#840) --- client/configuration_variable.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client/configuration_variable.go b/client/configuration_variable.go index adba8ed3..8225c988 100644 --- a/client/configuration_variable.go +++ b/client/configuration_variable.go @@ -107,6 +107,7 @@ func (client *ApiClient) ConfigurationVariablesByScope(scope Scope, scopeId stri params["deploymentLogId"] = scopeId case scope == ScopeWorkflow: params["environmentId"] = scopeId // temporary mitigation + scope = ScopeEnvironment // temporary mitigation params["workflowEnvironmentId"] = scopeId } err = client.http.Get("/configuration", params, &result)