Skip to content

Commit

Permalink
fix brutepool baseurl bug
Browse files Browse the repository at this point in the history
  • Loading branch information
M09Ic committed Sep 23, 2024
1 parent a4b9e77 commit f1684ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pool/brutepool.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func (pool *BrutePool) Invoke(v interface{}) {
var req *ihttp.Request
var err error

req, err = ihttp.BuildRequest(pool.ctx, pool.ClientType, pool.BaseURL, unit.path, unit.host, pool.Method)
req, err = ihttp.BuildRequest(pool.ctx, pool.ClientType, pool.base, unit.path, unit.host, pool.Method)
if err != nil {
logs.Log.Error(err.Error())
return
Expand Down

0 comments on commit f1684ff

Please sign in to comment.