@@ -233,7 +233,7 @@ impl Scheduler for ProcessScheduler {
233233 info!(
234234 message = "Killing child" ,
235235 worker_id,
236- job_id = * job_id,
236+ job_id = % job_id,
237237 pipeline_id = * pipeline_id
238238 ) ;
239239 if let Err ( e) = child. kill( ) . await {
@@ -331,7 +331,7 @@ impl Scheduler for ProcessScheduler {
331331 warn ! (
332332 message = "process scheduler worker exited without completion signal" ,
333333 worker_id = worker_id. 0 ,
334- job_id = * job_id,
334+ job_id = % job_id,
335335 pipeline_id = * pipeline_id,
336336 ) ;
337337 }
@@ -627,7 +627,7 @@ impl NodeScheduler {
627627 warn ! (
628628 message = "node not found for stop worker" ,
629629 node_id = * worker. node_id. 0 ,
630- job_id = * worker. job_id,
630+ job_id = % worker. job_id,
631631 pipeline_id = * worker. pipeline_id
632632 ) ;
633633 return Ok ( Some ( worker_id) ) ;
@@ -639,7 +639,7 @@ impl NodeScheduler {
639639
640640 info ! (
641641 message = "stopping worker" ,
642- job_id = * worker. job_id,
642+ job_id = % worker. job_id,
643643 pipeline_id = * worker. pipeline_id,
644644 node_id = * worker. node_id. 0 ,
645645 node_addr = node. addr,
@@ -648,7 +648,7 @@ impl NodeScheduler {
648648
649649 let Ok ( mut client) = Self :: client ( & node) . await else {
650650 warn ! (
651- job_id = * worker. job_id,
651+ job_id = % worker. job_id,
652652 pipeline_id = * worker. pipeline_id,
653653 "Failed to connect to worker to stop; this likely means it is dead"
654654 ) ;
@@ -664,7 +664,7 @@ impl NodeScheduler {
664664 . await
665665 else {
666666 warn ! (
667- job_id = * worker. job_id,
667+ job_id = % worker. job_id,
668668 pipeline_id = * worker. pipeline_id,
669669 "Failed to connect to worker to stop; this likely means it is dead"
670670 ) ;
@@ -732,14 +732,14 @@ impl Scheduler for NodeScheduler {
732732 node. release_slots ( worker_id, req. slots as usize ) ;
733733 } else {
734734 warn ! (
735- job_id,
735+ % job_id,
736736 pipeline_id, "Got worker finished message for unknown node {}" , machine_id
737737 ) ;
738738 }
739739
740740 if state. workers . remove ( & worker_id) . is_none ( ) {
741741 warn ! (
742- job_id,
742+ % job_id,
743743 pipeline_id, "Got worker finished message for unknown worker {}" , worker_id. 0
744744 ) ;
745745 }
@@ -803,7 +803,7 @@ impl Scheduler for NodeScheduler {
803803
804804 let slots_for_this_one = node. free_slots . min ( to_schedule) ;
805805 info ! (
806- job_id = * start_pipeline_req. job_id,
806+ job_id = % start_pipeline_req. job_id,
807807 pipeline_id = * start_pipeline_req. pipeline_id,
808808 "Scheduling {} slots on node {}" ,
809809 slots_for_this_one,
0 commit comments