From: Samuel Just Date: Thu, 18 Mar 2021 22:24:57 +0000 (-0700) Subject: crimson/tools/store-nbd: add information to assert_all calls X-Git-Tag: v17.1.0~2478^2~11 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=5e41c524a03509f379e95aef32f4b7b88cbcd857;p=ceph.git crimson/tools/store-nbd: add information to assert_all calls Signed-off-by: Samuel Just --- diff --git a/src/crimson/tools/store-nbd.cc b/src/crimson/tools/store-nbd.cc index 6a6e71d4e5508..d7cba168a32f6 100644 --- a/src/crimson/tools/store-nbd.cc +++ b/src/crimson/tools/store-nbd.cc @@ -647,7 +647,9 @@ public: logger().debug("mkfs complete"); return TransactionManager::mkfs_ertr::now(); }).handle_error( - crimson::ct_error::assert_all{} + crimson::ct_error::assert_all{ + "Invalid errror during TMDriver::mkfs" + } ); } @@ -662,7 +664,9 @@ public: init(); return tm->mount(); }).handle_error( - crimson::ct_error::assert_all{} + crimson::ct_error::assert_all{ + "Invalid errror during TMDriver::mount" + } ); }; @@ -674,7 +678,9 @@ public: clear(); return seastar::now(); }).handle_error( - crimson::ct_error::assert_all{} + crimson::ct_error::assert_all{ + "Invalid errror during TMDriver::close" + } ); } };