Add tracing headers
(request *http.Request, passedResponse *uaa.Response)
| 22 | |
| 23 | // Add tracing headers |
| 24 | func (t *UAATraceHeaderRequest) Make(request *http.Request, passedResponse *uaa.Response) error { |
| 25 | t.headers.SetHeaders(request) |
| 26 | return t.connection.Make(request, passedResponse) |
| 27 | } |
| 28 | |
| 29 | // Wrap sets the connection in the UAATraceHeaderRequest and returns itself. |
| 30 | func (t *UAATraceHeaderRequest) Wrap(innerconnection uaa.Connection) uaa.Connection { |
nothing calls this directly
no test coverage detected