Skip to content

Commit

Permalink
fix: provision url
Browse files Browse the repository at this point in the history
  • Loading branch information
ssvaidyanathan committed Oct 4, 2023
1 parent 02e6bcd commit 7968f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/client/provision/provision.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func Provision(cloudkms string, samples bool, gmek bool, serviceAccount string)
provStr = append(provStr, "\"createSampleWorkflows\":"+strconv.FormatBool(samples))
provStr = append(provStr, "\"provisionGmek\":"+strconv.FormatBool(gmek))

u.Path = path.Join(u.Path, "client:provision")
u.Path = path.Join(u.Path, "clients:provision")

payload := "{" + strings.Join(provStr, ",") + "}"
respBody, err = apiclient.HttpClient(u.String(), payload)
Expand Down

0 comments on commit 7968f90

Please sign in to comment.