Handles incoming queries from frontend.
| 39 | |
| 40 | // Handles incoming queries from frontend. |
| 41 | type frontendProcessor struct { |
| 42 | handler RequestHandler |
| 43 | maxMessageSize int |
| 44 | querierID string |
| 45 | |
| 46 | log log.Logger |
| 47 | |
| 48 | targetHeaders []string |
| 49 | } |
| 50 | |
| 51 | // notifyShutdown implements processor. |
| 52 | func (fp *frontendProcessor) notifyShutdown(ctx context.Context, conn *grpc.ClientConn, address string) { |
nothing calls this directly
no outgoing calls
no test coverage detected