| 375 | } |
| 376 | |
| 377 | type mockGrpcServiceHandler struct { |
| 378 | clientShutdownCalled atomic.Bool |
| 379 | querierShutdownCalled atomic.Bool |
| 380 | } |
| 381 | |
| 382 | func (m *mockGrpcServiceHandler) NotifyClientShutdown(_ context.Context, _ *frontendv1pb.NotifyClientShutdownRequest) (*frontendv1pb.NotifyClientShutdownResponse, error) { |
| 383 | m.clientShutdownCalled.Store(true) |
nothing calls this directly
no outgoing calls
no test coverage detected