Skip to content

Commit bf69989

Browse files
committed
f
1 parent be5b62b commit bf69989

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

e2e/cluster/cmx/cluster.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,9 @@ func waitForSSH(node Node, t *testing.T) error {
236236

237237
func (c *Cluster) Airgap() error {
238238
// Update network policy to airgap
239-
output, err := exec.Command("replicated", "network", "update", "policy", c.network.ID, "--policy=airgap").CombinedOutput()
239+
args := []string{"network", "update", "policy", c.network.ID, "--policy=airgap"}
240+
fmt.Printf("args: %v\n", args)
241+
output, err := exec.Command("replicated", args...).CombinedOutput()
240242
if err != nil {
241243
return fmt.Errorf("update network policy: %v: %s", err, string(output))
242244
}

0 commit comments

Comments
 (0)