File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
packages/edge/infra/client/container-runner Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ pub fn run(
93
93
. arg ( "--all" )
94
94
. arg ( & actor_id)
95
95
. arg ( "SIGTERM" )
96
+ . stdout ( Stdio :: null ( ) )
97
+ . stderr ( Stdio :: null ( ) )
96
98
. status ( ) ;
97
99
println ! ( "runc kill status: {:?}" , status) ;
98
100
break ;
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ impl Setup {
24
24
pub fn signal_child ( & self , signal : & str ) {
25
25
let kill = Command :: new ( "kill" )
26
26
. args ( [ "-s" , signal, & self . child . id ( ) . to_string ( ) ] )
27
+ . stdout ( std:: process:: Stdio :: null ( ) )
28
+ . stderr ( std:: process:: Stdio :: null ( ) )
27
29
. status ( )
28
30
. unwrap ( ) ;
29
31
assert ! ( kill. success( ) ) ;
@@ -37,6 +39,8 @@ impl Drop for Setup {
37
39
. arg ( "delete" )
38
40
. arg ( "--force" )
39
41
. arg ( & self . actor_id )
42
+ . stdout ( std:: process:: Stdio :: null ( ) )
43
+ . stderr ( std:: process:: Stdio :: null ( ) )
40
44
. status ( )
41
45
. unwrap ( ) ;
42
46
@@ -64,6 +68,8 @@ pub fn setup(command: &str) -> Setup {
64
68
. arg ( "docker://debian:12.4" )
65
69
. arg ( "oci:oci-image:latest" )
66
70
. current_dir ( actor_dir. path ( ) )
71
+ . stdout ( std:: process:: Stdio :: null ( ) )
72
+ . stderr ( std:: process:: Stdio :: null ( ) )
67
73
. status ( )
68
74
. unwrap ( ) ;
69
75
assert ! ( status. success( ) ) ;
@@ -74,6 +80,8 @@ pub fn setup(command: &str) -> Setup {
74
80
. arg ( "oci-image:latest" )
75
81
. arg ( "fs" )
76
82
. current_dir ( actor_dir. path ( ) )
83
+ . stdout ( std:: process:: Stdio :: null ( ) )
84
+ . stderr ( std:: process:: Stdio :: null ( ) )
77
85
. status ( )
78
86
. unwrap ( ) ;
79
87
assert ! ( status. success( ) ) ;
You can’t perform that action at this time.
0 commit comments