Fix not setting epoch for old log system
This commit is contained in:
parent
a1095c8250
commit
3509209d3f
|
@ -168,7 +168,7 @@ OldTLogCoreData::OldTLogCoreData(const OldLogData& oldData)
|
|||
}
|
||||
|
||||
struct TagPartitionedLogSystem : ILogSystem, ReferenceCounted<TagPartitionedLogSystem> {
|
||||
UID dbgid;
|
||||
const UID dbgid;
|
||||
LogSystemType logSystemType;
|
||||
std::vector<Reference<LogSet>> tLogs;
|
||||
int expectedLogSets;
|
||||
|
@ -2112,6 +2112,7 @@ struct TagPartitionedLogSystem : ILogSystem, ReferenceCounted<TagPartitionedLogS
|
|||
logSystem->oldLogData[0].logRouterTags = oldLogSystem->logRouterTags;
|
||||
logSystem->oldLogData[0].txsTags = oldLogSystem->txsTags;
|
||||
logSystem->oldLogData[0].pseudoLocalities = oldLogSystem->pseudoLocalities;
|
||||
logSystem->oldLogData[0].epoch = oldLogSystem->epoch;
|
||||
}
|
||||
logSystem->oldLogData.insert(logSystem->oldLogData.end(), oldLogSystem->oldLogData.begin(), oldLogSystem->oldLogData.end());
|
||||
|
||||
|
|
Loading…
Reference in New Issue