Skip to content

Commit b558c52

Browse files
committed
fix(plans): url error
1 parent 49ad882 commit b558c52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

limits/limits.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func Plans(c *drycc.Client, specID string, cpu, memory, results int) ([]api.Limi
4141
}
4242
u := "/v2/limits/plans/"
4343
if len(queryArray) > 0 {
44-
u += fmt.Sprintf("%s?%s", u, strings.Join(queryArray, "&"))
44+
u = fmt.Sprintf("%s?%s", u, strings.Join(queryArray, "&"))
4545
}
4646

4747
body, count, reqErr := c.LimitedRequest(u, results)

0 commit comments

Comments
 (0)