Skip to content

Commit 72c9d6d

Browse files
committed
crimson/os/seastore/cache: return false explicitly if delta is not replayed
Signed-off-by: Myoungwon Oh <[email protected]>
1 parent ad8b3f2 commit 72c9d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crimson/os/seastore/cache.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1839,7 +1839,7 @@ Cache::replay_delta(
18391839
journal_seq, record_base, delta);
18401840
assert(delta.pversion > 0);
18411841
return replay_delta_ertr::make_ready_future<std::pair<bool, CachedExtentRef>>(
1842-
std::make_pair(true, nullptr));
1842+
std::make_pair(false, nullptr));
18431843
}
18441844

18451845
DEBUG("replay extent delta at {} {} ... -- {}, prv_extent={}",

0 commit comments

Comments
 (0)