Skip to content

Commit

Permalink
fix: wasm oci image source e2e test failed when IP_FAMILY=ipv6 (envoy…
Browse files Browse the repository at this point in the history
…proxy#4623)

fixt wasm test”

Signed-off-by: Huabing Zhao <[email protected]>
(cherry picked from commit 7b85d22)
Signed-off-by: Huabing Zhao <[email protected]>
  • Loading branch information
zhaohuabing committed Nov 5, 2024
1 parent ac57219 commit f7e00c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/e2e/tests/wasm_oci.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"errors"
"fmt"
"io"
"net"
"testing"
"time"

Expand Down Expand Up @@ -70,7 +71,7 @@ var OCIWasmTest = suite.ConformanceTest{
if err != nil {
t.Fatalf("failed to get registry IP: %v", err)
}
registryAddr := fmt.Sprintf("%s:5000", registryIP)
registryAddr := net.JoinHostPort(registryIP, "5000")

// Push the wasm image to the registry
digest := pushWasmImageForTest(t, suite, registryAddr)
Expand Down

0 comments on commit f7e00c4

Please sign in to comment.