Fix vet errors with go 1.7
Signed-off-by: Richard Scothern <richard.scothern@docker.com>master
							parent
							
								
									4e17ab5d31
								
							
						
					
					
						commit
						fcea6145f5
					
				|  | @ -103,20 +103,22 @@ func GetRequestID(ctx Context) string { | |||
| // WithResponseWriter returns a new context and response writer that makes
 | ||||
| // interesting response statistics available within the context.
 | ||||
| func WithResponseWriter(ctx Context, w http.ResponseWriter) (Context, http.ResponseWriter) { | ||||
| 	irw := instrumentedResponseWriter{ | ||||
| 		ResponseWriter: w, | ||||
| 		Context:        ctx, | ||||
| 	} | ||||
| 
 | ||||
| 	if closeNotifier, ok := w.(http.CloseNotifier); ok { | ||||
| 		irwCN := &instrumentedResponseWriterCN{ | ||||
| 			instrumentedResponseWriter: irw, | ||||
| 			instrumentedResponseWriter: instrumentedResponseWriter{ | ||||
| 				ResponseWriter: w, | ||||
| 				Context:        ctx, | ||||
| 			}, | ||||
| 			CloseNotifier: closeNotifier, | ||||
| 		} | ||||
| 
 | ||||
| 		return irwCN, irwCN | ||||
| 	} | ||||
| 
 | ||||
| 	irw := instrumentedResponseWriter{ | ||||
| 		ResponseWriter: w, | ||||
| 		Context:        ctx, | ||||
| 	} | ||||
| 	return &irw, &irw | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue