@@ -86,7 +86,8 @@ InternalClientRequest::with_interruption()
8686 co_await pg->obc_loader .load_and_lock (
8787 obc_manager, pg->get_lock_type (op_info)
8888 ).handle_error_interruptible (
89- crimson::ct_error::assert_all (" unexpected error" )
89+ crimson::ct_error::assert_all (
90+ fmt::format (" {} {} {} error when loading {}" ,*pg, FNAME, *this , get_target_oid ()).c_str ())
9091 );
9192
9293 auto params = get_do_osd_ops_params ();
@@ -96,12 +97,8 @@ InternalClientRequest::with_interruption()
9697 co_await pg->run_executer (
9798 ox, obc_manager.get_obc (), op_info, osd_ops
9899 ).handle_error_interruptible (
99- crimson::ct_error::all_same_way (
100- [this , FNAME](auto e) {
101- ERRORDPPI (" {}: got unexpected error {}" , *pg, *this , e);
102- ceph_assert (0 == " should not return an error" );
103- return interruptor::now ();
104- })
100+ crimson::ct_error::assert_all (
101+ fmt::format (" {} {} {}: got unexpected error {}" , *pg, FNAME, *this , get_target_oid ()).c_str ())
105102 );
106103
107104 auto [submitted, completed] = co_await pg->submit_executer (
0 commit comments