Merge #6335
6335: Fix panic context r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
dd8a75b2cf
@ -34,7 +34,7 @@ impl<'a> RequestDispatcher<'a> {
|
||||
};
|
||||
let world = panic::AssertUnwindSafe(&mut *self.global_state);
|
||||
let response = panic::catch_unwind(move || {
|
||||
stdx::panic_context::enter(format!("request: {} {:#?}", R::METHOD, params));
|
||||
let _pctx = stdx::panic_context::enter(format!("request: {} {:#?}", R::METHOD, params));
|
||||
let result = f(world.0, params);
|
||||
result_to_response::<R>(id, result)
|
||||
})
|
||||
@ -64,7 +64,7 @@ impl<'a> RequestDispatcher<'a> {
|
||||
let world = self.global_state.snapshot();
|
||||
|
||||
move || {
|
||||
let _ctx =
|
||||
let _pctx =
|
||||
stdx::panic_context::enter(format!("request: {} {:#?}", R::METHOD, params));
|
||||
let result = f(world, params);
|
||||
Task::Response(result_to_response::<R>(id, result))
|
||||
@ -160,7 +160,7 @@ impl<'a> NotificationDispatcher<'a> {
|
||||
return Ok(self);
|
||||
}
|
||||
};
|
||||
stdx::panic_context::enter(format!("notification: {}", N::METHOD));
|
||||
let _pctx = stdx::panic_context::enter(format!("notification: {}", N::METHOD));
|
||||
f(self.global_state, params)?;
|
||||
Ok(self)
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
use std::{cell::RefCell, panic, sync::Once};
|
||||
|
||||
pub fn enter(context: String) -> impl Drop {
|
||||
pub fn enter(context: String) -> PanicContext {
|
||||
static ONCE: Once = Once::new();
|
||||
ONCE.call_once(PanicContext::init);
|
||||
|
||||
@ -13,7 +13,7 @@ pub fn enter(context: String) -> impl Drop {
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
struct PanicContext {
|
||||
pub struct PanicContext {
|
||||
_priv: (),
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user