1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-04-04 22:04:28 +02:00

beat testing 2

This commit is contained in:
Chhekur 2021-08-24 01:47:04 +05:30
parent 9f1239e288
commit 9c67d13992

View File

@ -526,7 +526,7 @@ func (t *JWTAuthTransport) RoundTrip(req *http.Request) (*http.Response, error)
fmt.Println(t.Jwt, " this is JWT from library RoundTrip method") fmt.Println(t.Jwt, " this is JWT from library RoundTrip method")
req2.Header.Set("Authorization", fmt.Sprintf("JWT %s", t.Jwt)) req2.Header.Set("Authorization", fmt.Sprintf("Bearer %s", t.Jwt))
return t.transport().RoundTrip(req2) return t.transport().RoundTrip(req2)
} }