Skip to content

Commit ab7cf24

Browse files
committed
e2e: fix pause command in ProxyMode func
The agn image has no pause command, only a pause subcommand of the agn command.
1 parent 533daf6 commit ab7cf24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/framework/util.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,9 @@ func ProxyMode(f *Framework) (string, error) {
469469
HostNetwork: true,
470470
Containers: []v1.Container{
471471
{
472-
Name: "detector",
473-
Image: AgnHostImage,
474-
Command: []string{"pause"},
472+
Name: "detector",
473+
Image: AgnHostImage,
474+
Args: []string{"pause"},
475475
},
476476
},
477477
},

0 commit comments

Comments
 (0)