| 2080 | |
| 2081 | template <class T> |
| 2082 | static std::string getOptionalString(Optional<T> opt) { |
| 2083 | if (opt.present()) |
| 2084 | return opt.get().toString(); |
| 2085 | return "NotSet"; |
| 2086 | } |
| 2087 | |
| 2088 | ACTOR Future<bool> checkCoordinators(Database cx) { |
| 2089 | state Transaction tr(cx); |
no test coverage detected