From 5e41c524a03509f379e95aef32f4b7b88cbcd857 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Thu, 18 Mar 2021 15:24:57 -0700 Subject: [PATCH] crimson/tools/store-nbd: add information to assert_all calls Signed-off-by: Samuel Just --- src/crimson/tools/store-nbd.cc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/crimson/tools/store-nbd.cc b/src/crimson/tools/store-nbd.cc index 6a6e71d4e55..d7cba168a32 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" + } ); } }; -- 2.39.5