Skip to content

Commit

Permalink
Clean up a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Jan 18, 2024
1 parent 1334811 commit f9fbbfb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions unified-scheduler-pool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,10 +571,9 @@ impl<S: SpawnableScheduler<TH>, TH: TaskHandler> ThreadManager<S, TH> {
NewTaskPayload::OpenSubchannel(context) => {
// signal about new SchedulingContext to both handler and
// accumulator threads
runnable_task_sender.send_chained_channel(
context,
handler_count
).unwrap();
runnable_task_sender
.send_chained_channel(context, handler_count)
.unwrap();
executed_task_sender
.send(ExecutedTaskPayload::OpenSubchannel(()))
.unwrap();
Expand Down

0 comments on commit f9fbbfb

Please sign in to comment.