| 926 | |
| 927 | |
| 928 | Future<http::Response> Master::QuotaHandler::remove( |
| 929 | const mesos::master::Call& call, |
| 930 | const Option<Principal>& principal) const |
| 931 | { |
| 932 | CHECK_EQ(mesos::master::Call::REMOVE_QUOTA, call.type()); |
| 933 | CHECK(call.has_remove_quota()); |
| 934 | |
| 935 | return _remove(call.remove_quota().role(), principal); |
| 936 | } |
| 937 | |
| 938 | |
| 939 | Future<http::Response> Master::QuotaHandler::remove( |
no test coverage detected