MCPcopy Create free account
hub / github.com/apple/foundationdb / logServerString

Method logServerString

fdbserver/LogSystem.cpp:56–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56std::string LogSet::logServerString() {
57 std::string result;
58 for (int i = 0; i < logServers.size(); i++) {
59 if (i > 0) {
60 result += ", ";
61 }
62 result += logServers[i]->get().id().toString();
63 }
64 return result;
65}
66
67void LogSet::populateSatelliteTagLocations(int logRouterTags, int oldLogRouterTags, int txsTags, int oldTxsTags) {
68 satelliteTagLocations.clear();

Callers 3

peekAllMethod · 0.80
peekLocalMethod · 0.80
peekLogRouterMethod · 0.80

Calls 4

getMethod · 0.65
sizeMethod · 0.45
toStringMethod · 0.45
idMethod · 0.45

Tested by

no test coverage detected