Skip to content

Commit

Permalink
Review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gurinderu committed Dec 6, 2023
1 parent 70e5f61 commit f6c07f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion aquamarine/src/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ where
if let Some(Ready((reusables, effects, stats, parent_span))) =
self.future.as_mut().map(|f| f.poll_unpin(cx))
{
let span = tracing::info_span!(parent: parent_span.as_ref(), "Actor: execute call requests", particle_id= self.particle.id, deal_id = self.deal_id);
let span = tracing::info_span!(parent: parent_span.as_ref(),
"Actor: execute call requests",
particle_id = self.particle.id,
deal_id = self.deal_id);
let _span_guard = span.enter();
self.future.take();

Expand Down

0 comments on commit f6c07f1

Please sign in to comment.