| 865 | return AddressExclusion::parse(key.removePrefix(excludedServersPrefix)); |
| 866 | } |
| 867 | std::string encodeExcludedServersKey(AddressExclusion const& addr) { |
| 868 | // FIXME: make sure what's persisted here is not affected by innocent changes elsewhere |
| 869 | return excludedServersPrefix.toString() + addr.toString(); |
| 870 | } |
| 871 | |
| 872 | const KeyRangeRef excludedLocalityKeys(LiteralStringRef("\xff/conf/excluded_locality/"), |
| 873 | LiteralStringRef("\xff/conf/excluded_locality0")); |
no test coverage detected