We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f3bed commit 50390afCopy full SHA for 50390af
src/mon/Monitor.cc
@@ -5708,7 +5708,12 @@ bool Monitor::_scrub(ScrubResult *r,
5708
5709
bufferlist bl;
5710
int err = store->get(k.first, k.second, bl);
5711
- ceph_assert(err == 0);
+ if (err != 0) {
5712
+ derr << __func__ << " store got: " << cpp_strerror(err)
5713
+ << " prefix: " << k.first << " key: " << k.second
5714
+ << dendl;
5715
+ ceph_abort();
5716
+ }
5717
5718
uint32_t key_crc = bl.crc32c(0);
5719
dout(30) << __func__ << " " << k << " bl " << bl.length() << " bytes"
0 commit comments