Skip to content

Commit

Permalink
OPENAPI: accidentally missed a reference to the variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobm-splunk authored and daveshanley committed Jun 26, 2024
1 parent 1ec155c commit 6f57ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/build_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func BuildHttpTransaction(build HttpTransactionConfig) *HttpTransaction {
newUrl, e = url.Parse(replaced.RewrittenPath)
if e != nil {
newUrl = build.NewRequest.URL
pterm.Error.Printf("major configuration problem: cannot parse URL: `%s`: %s", replaced, e.Error())
pterm.Error.Printf("major configuration problem: cannot parse URL: `%s`: %s", replaced.RewrittenPath, e.Error())
}
if build.NewRequest.URL.RawQuery != "" {
newUrl.RawQuery = build.NewRequest.URL.RawQuery
Expand Down

0 comments on commit 6f57ac5

Please sign in to comment.