File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -791,20 +791,20 @@ impl Node {
791
791
. join ( ) ;
792
792
} ) ;
793
793
794
- let _ = thread :: scope ( |scope| {
795
- // Launch post_up commands, if any.
796
- if let Some ( post_ups ) = & pinned . post_up {
797
- let _span = span ! ( Level :: INFO , "pinned" ) ;
798
- info ! ( "Launching <{}> post_up commands" , post_ups. len ( ) ) ;
799
- post_ups . iter ( ) . for_each ( |post_up | {
794
+ // Launch post_up commands, if any.
795
+ if let Some ( post_ups ) = & pinned . post_up {
796
+ let _span = span ! ( Level :: INFO , "pinned" ) ;
797
+ info ! ( "Launching <{}> post_up commands" , post_ups . len ( ) ) ;
798
+ post_ups. iter ( ) . for_each ( |post_up| {
799
+ let _ = thread :: scope ( |scope | {
800
800
let _ = scope
801
801
. spawn ( move || {
802
- _sync_exec ( & post_up) ;
802
+ _async_exec ( & post_up) ;
803
803
} )
804
804
. join ( ) ;
805
805
} ) ;
806
- }
807
- } ) ;
806
+ } ) ;
807
+ }
808
808
}
809
809
} ) ;
810
810
}
You can’t perform that action at this time.
0 commit comments