Skip to content

Commit

Permalink
fix ccb side of unintentionally added endpoint format change in ccms
Browse files Browse the repository at this point in the history
  • Loading branch information
spacehamster87 committed Sep 30, 2024
1 parent dcb8308 commit c50e793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/metricdata/cc-metric-store.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (ccms *CCMetricStore) Init(rawConfig json.RawMessage) error {
}

ccms.url = config.Url
ccms.queryEndpoint = fmt.Sprintf("%s/api/query/", config.Url)
ccms.queryEndpoint = fmt.Sprintf("%s/api/query", config.Url)
ccms.jwt = config.Token
ccms.client = http.Client{
Timeout: 10 * time.Second,
Expand Down

0 comments on commit c50e793

Please sign in to comment.