Skip to content

Commit

Permalink
Merge pull request #503 from kool-dev/fix-deploy-field
Browse files Browse the repository at this point in the history
fix domain extras field name
  • Loading branch information
fabriciojs authored Feb 16, 2024
2 parents e10fff4 + fa230ba commit 99eb85e
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 99eb85e

Please sign in to comment.