8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2feac3f commit 60802cfCopy full SHA for 60802cf
arangod/Replication2/ReplicatedLog/LogStatus.cpp
@@ -88,6 +88,7 @@ auto LeaderStatus::fromVelocyPack(velocypack::Slice slice) -> LeaderStatus {
88
LeaderStatus status;
89
status.term = slice.get(StaticStrings::Term).extract<LogTerm>();
90
status.local = LogStatistics::fromVelocyPack(slice.get("local"));
91
+ status.largestCommonIndex = slice.get("largestCommonIndex").extract<LogIndex>();
92
status.commitLagMS = std::chrono:: 4402 duration<double, std::milli>{
93
slice.get("commitLagMS").extract<double>()};
94
for (auto [key, value] : VPackObjectIterator(slice.get(StaticStrings::Follower))) {
0 commit comments