Skip to content

Commit

Permalink
REMOVE THIS COMMIT, just to test within ci environment
Browse files Browse the repository at this point in the history
  • Loading branch information
jmazzitelli committed Jan 17, 2024
1 parent ea00ab5 commit ff4934c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions util/httputil/http_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"net"
"net/http"
"os"
"runtime/debug"
"strconv"
"strings"
"time"
Expand Down Expand Up @@ -86,6 +87,9 @@ type customHeadersRoundTripper struct {
}

func (rt *authRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
log.Errorf("MAZZ1:value:[%v]", rt.auth)
debug.PrintStack()
log.Errorf("MAZZ2:value:[%v]", rt.auth)
req.Header.Set("Authorization", rt.auth)
return rt.originalRT.RoundTrip(req)
}
Expand Down

0 comments on commit ff4934c

Please sign in to comment.