fix compile error

This commit is contained in:
Evan Tschannen 2020-04-29 14:05:53 -07:00
parent 7cebe743f9
commit 0420b3e786
1 changed files with 1 additions and 1 deletions

View File

@ -1491,7 +1491,7 @@ namespace dbBackup {
beginVersionKey = BinaryWriter::toValue(bVersion, Unversioned());
state Key versionKey = logUidValue.withPrefix(destUidValue).withPrefix(backupLatestVersionsPrefix);
Optional<Key> versionRecord = wait( scrTr->get(versionKey) );
Optional<Key> versionRecord = wait( srcTr->get(versionKey) );
if(!versionRecord.present()) {
srcTr->set(versionKey, beginVersionKey);
}