Report subscriptions tracked with beacon protocol
This commit is contained in:
parent
63e66b0320
commit
0079a8a3e9
1 changed files with 4 additions and 1 deletions
|
|
@ -1094,7 +1094,10 @@ fn update<P: Program, E: Executor>(
|
||||||
}
|
}
|
||||||
|
|
||||||
let subscription = runtime.enter(|| program.subscription());
|
let subscription = runtime.enter(|| program.subscription());
|
||||||
runtime.track(subscription::into_recipes(subscription.map(Action::Output)));
|
let recipes = subscription::into_recipes(subscription.map(Action::Output));
|
||||||
|
|
||||||
|
debug::subscriptions_tracked(recipes.len());
|
||||||
|
runtime.track(recipes);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn run_action<P, C>(
|
fn run_action<P, C>(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue