mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 18:35:46 +02:00
chore: fix our release pipeline (#2408)
* chore: fix our release pipeline Also remove alpine prod.wip file that has not been used and unlikely will be for prod. --------- Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
parent
7054fc56b1
commit
b3e0722d01
5 changed files with 17 additions and 45 deletions
|
@ -2134,9 +2134,10 @@ error_code RdbLoaderBase::EnsureReadInternal(size_t min_sz) {
|
|||
}
|
||||
|
||||
io::Result<size_t> res = src_->ReadAtLeast(out_buf, min_sz);
|
||||
if (!res)
|
||||
if (!res) {
|
||||
VLOG(1) << "Error reading from source: " << res.error() << " " << min_sz << " bytes";
|
||||
return res.error();
|
||||
|
||||
}
|
||||
if (*res < min_sz)
|
||||
return RdbError(errc::rdb_file_corrupted);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue