Skip to content

Commit 6b7742f

Browse files
committed
Fix URL
1 parent d28b204 commit 6b7742f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/cmd/loadtest/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func main() {
2222
if err != nil {
2323
log.Fatal(stacktrace.Propagate(err, "cannot create json payload"))
2424
}
25-
response, err := client.Post("http://api.httpsms.com/messages/send", "application/json", bytes.NewBuffer(payload))
25+
response, err := client.Post("https://api.httpsms.com/v1/messages/send", "application/json", bytes.NewBuffer(payload))
2626
if err != nil {
2727
log.Fatal(stacktrace.Propagate(err, "cannot perform http request"))
2828
}

0 commit comments

Comments
 (0)