Skip to content

Commit

Permalink
Merge pull request #145 from atomist-skills/update-transact-urls
Browse files Browse the repository at this point in the history
update transact urls
  • Loading branch information
chrispatrick authored Jan 21, 2025
2 parents d126da0 + 53a1ee0 commit aa495d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http_transact.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ func httpTransact(entities interface{}, orderingKey string, workspace string, ap
logger.Debugf("Transacting entities with correlation id %s:\n%s", message.CorrelationId, string(bs))
j, _ := json.MarshalIndent(message, "", " ")

url := "https://api.atomist.com/skills/remote/" + workspace
url := "https://api.scout.docker.com/v1/skills/remote/" + workspace
if environment.IsStaging() {
url = "https://api-staging.atomist.services/skills/remote/" + workspace
url = "https://api.scout-stage.docker.com/v1/skills/remote/" + workspace
}

httpReq, err := http.NewRequest(http.MethodPost, url, bytes.NewBuffer(j))
Expand Down

0 comments on commit aa495d2

Please sign in to comment.