Skip to content

Commit

Permalink
fix domain extras field name
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriciojs committed Feb 16, 2024
1 parent aa9ec81 commit fa230ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/cloud/deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (d *Deployer) CreateDeploy(tarballPath string) (resp *api.DeployCreateRespo

create.PostField("cluster", d.env.Get("KOOL_CLOUD_CLUSTER"))
create.PostField("domain", d.env.Get("KOOL_DEPLOY_DOMAIN"))
create.PostField("additional_domains", d.env.Get("KOOL_DEPLOY_DOMAIN_EXTRAS"))
create.PostField("domain_extras", d.env.Get("KOOL_DEPLOY_DOMAIN_EXTRAS"))
create.PostField("www_redirect", d.env.Get("KOOL_DEPLOY_WWW_REDIRECT"))

resp, err = create.Run()
Expand Down

0 comments on commit fa230ba

Please sign in to comment.