Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mgencur committed May 2, 2024
1 parent 4c56f35 commit 6956687
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions test/e2e/multicontainer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ func TestMultiContainer(t *testing.T) {
Ports: []corev1.ContainerPort{{
ContainerPort: 8881,
}},
Env: []corev1.EnvVar{
{Name: "FORWARD_PORT", Value: "8882"},
},
}, {
Image: pkgTest.ImagePath(names.Sidecars[0]),
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func handler(w http.ResponseWriter, r *http.Request) {

func main() {
flag.Parse()
log.Printf("serving container started on port %d", getPort())
log.Printf("serving container started on port %s", getPort())
test.ListenAndServeGracefully(":"+getPort(), handler)
}

Expand Down

0 comments on commit 6956687

Please sign in to comment.