Fix compile
Summary: I was pretty sure I compiled this before landing, sorry :/ Test Plan: compiles Reviewers: sdong Reviewed By: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D34173
This commit is contained in:
parent
b9ff6b050d
commit
216a9e16f4
@ -1255,7 +1255,8 @@ Status BackupEngineImpl::BackupMeta::LoadFromFile(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (line.empty()) {
|
if (line.empty()) {
|
||||||
return Status::Corruption("File checksum is missing in " + filename);
|
return Status::Corruption("File checksum is missing for " + filename +
|
||||||
|
" in " + meta_filename_);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t checksum_value = 0;
|
uint32_t checksum_value = 0;
|
||||||
@ -1264,10 +1265,12 @@ Status BackupEngineImpl::BackupMeta::LoadFromFile(
|
|||||||
checksum_value = static_cast<uint32_t>(
|
checksum_value = static_cast<uint32_t>(
|
||||||
strtoul(line.data(), nullptr, 10));
|
strtoul(line.data(), nullptr, 10));
|
||||||
if (line != std::to_string(checksum_value)) {
|
if (line != std::to_string(checksum_value)) {
|
||||||
return Status::Corruption("Invalid checksum value in " + filename);
|
return Status::Corruption("Invalid checksum value for " + filename +
|
||||||
|
" in " + meta_filename_);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return Status::Corruption("Unknown checksum type in " + filename);
|
return Status::Corruption("Unknown checksum type for " + filename +
|
||||||
|
" in " + meta_filename_);
|
||||||
}
|
}
|
||||||
|
|
||||||
files.emplace_back(new FileInfo(filename, size, checksum_value));
|
files.emplace_back(new FileInfo(filename, size, checksum_value));
|
||||||
@ -1275,7 +1278,8 @@ Status BackupEngineImpl::BackupMeta::LoadFromFile(
|
|||||||
|
|
||||||
if (s.ok() && data.size() > 0) {
|
if (s.ok() && data.size() > 0) {
|
||||||
// file has to be read completely. if not, we count it as corruption
|
// file has to be read completely. if not, we count it as corruption
|
||||||
s = Status::Corruption("Tailing data in backup meta file in " + filename);
|
s = Status::Corruption("Tailing data in backup meta file in " +
|
||||||
|
meta_filename_);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s.ok()) {
|
if (s.ok()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user