fixup! Reformat the code per github's requirement
This commit is contained in:
parent
40648dbb31
commit
c32c3b6ec4
|
@ -183,8 +183,8 @@ struct LogSystemConfig {
|
|||
LogEpoch oldestBackupEpoch;
|
||||
|
||||
LogSystemConfig(LogEpoch e = 0)
|
||||
: logSystemType(LogSystemType::empty), logRouterTags(0), txsTags(0), expectedLogSets(0), stopped(false),
|
||||
epoch(e), oldestBackupEpoch(e) {}
|
||||
: logSystemType(LogSystemType::empty), logRouterTags(0), txsTags(0), expectedLogSets(0), stopped(false), epoch(e),
|
||||
oldestBackupEpoch(e) {}
|
||||
|
||||
std::string toString() const;
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
|
||||
#include "fdbserver/TagPartitionedLogSystem.actor.h"
|
||||
|
||||
#include "flow/actorcompiler.h" // This must be the last #include.
|
||||
|
@ -1916,9 +1915,8 @@ Optional<std::pair<Version, Version>> TagPartitionedLogSystem::getDurableVersion
|
|||
return Optional<std::pair<Version, Version>>();
|
||||
}
|
||||
|
||||
ACTOR Future<Void> TagPartitionedLogSystem::getDurableVersionChanged(
|
||||
LogLockInfo lockInfo,
|
||||
std::vector<Reference<AsyncVar<bool>>> failed) {
|
||||
ACTOR Future<Void> TagPartitionedLogSystem::getDurableVersionChanged(LogLockInfo lockInfo,
|
||||
std::vector<Reference<AsyncVar<bool>>> failed) {
|
||||
// Wait for anything relevant to change
|
||||
std::vector<Future<Void>> changes;
|
||||
for (int j = 0; j < lockInfo.logSet->logServers.size(); j++) {
|
||||
|
|
Loading…
Reference in New Issue