6335: Fix panic context r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot]
2020-10-23 13:19:09 +00:00
committed by GitHub
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -34,7 +34,7 @@ pub(crate) fn on_sync<R>(
};
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 @@ pub(crate) fn on<R>(
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 @@ pub(crate) fn on<N>(
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)
}
+2 -2
View File
@@ -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: (),
}