Returns a string representation of this cluster connection record. This will include the type of record and the key where the record is stored.
| 111 | // Returns a string representation of this cluster connection record. This will include the type of record and the |
| 112 | // key where the record is stored. |
| 113 | std::string ClusterConnectionKey::toString() const { |
| 114 | return "fdbkey://" + printable(connectionStringKey); |
| 115 | } |
| 116 | |
| 117 | ACTOR Future<bool> ClusterConnectionKey::persistImpl(Reference<ClusterConnectionKey> self) { |
| 118 | self->setPersisted(); |
no test coverage detected