Skip to content

Commit

Permalink
removing unnecessary quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh maheshwari committed Jul 5, 2023
1 parent 2493c49 commit e9e568e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pod_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ func configureSidecarContainer(container *corev1.Container, initMode bool, proce
if cluster.Spec.Routing.PodIPFamily != nil {
sidecarArgs = append(sidecarArgs, "--public-ip-family")
sidecarArgs = append(sidecarArgs, fmt.Sprint(*cluster.Spec.Routing.PodIPFamily))
sidecarArgs = append(sidecarArgs, "--bind-address", "'[::]:8080'")
sidecarArgs = append(sidecarArgs, "--bind-address", "[::]:8080")
}

if cluster.NeedsExplicitListenAddress() {
Expand Down

0 comments on commit e9e568e

Please sign in to comment.