| 2845 | } |
| 2846 | |
| 2847 | void AdmissionController::LogDequeueFailed( |
| 2848 | QueueNode* node, const string& not_admitted_reason) { |
| 2849 | KLOG_EVERY_N_SECS(INFO, 5) << "Could not dequeue query id=" |
| 2850 | << PrintId(node->admission_request.query_id) |
| 2851 | << " reason: " << not_admitted_reason; |
| 2852 | node->admission_request.summary_profile->AddInfoString( |
| 2853 | PROFILE_INFO_KEY_LAST_QUEUED_REASON, not_admitted_reason); |
| 2854 | } |
| 2855 | |
| 2856 | AdmissionController::PoolStats* AdmissionController::GetPoolStats( |
| 2857 | const ScheduleState& state) { |
nothing calls this directly
no test coverage detected