Skip to content

Commit e98d49a

Browse files
fix the double / in urls
1 parent 0dbe641 commit e98d49a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syntheticsclientv2/synthetics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func NewConfigurableClient(apiKey string, realm string, args ClientArgs) *Client
131131
httpClient: http.Client{Timeout: time.Duration(args.timeoutSeconds) * time.Second},
132132
}
133133
if args.publicBaseUrl == "" {
134-
client.publicBaseURL = "https://api." + realm + ".signalfx.com/v2/synthetics/"
134+
client.publicBaseURL = "https://api." + realm + ".signalfx.com/v2/synthetics"
135135
} else {
136136
client.publicBaseURL = args.publicBaseUrl
137137
}

0 commit comments

Comments
 (0)