From 656ca75e840fdf8df34132c9219c5773b92c6b6e Mon Sep 17 00:00:00 2001 From: "Daniel (Shijun) Qian" Date: Tue, 22 Aug 2017 17:18:08 +0800 Subject: [PATCH] Fix json error --- controllers/nginx/pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/nginx/pkg/config/config.go b/controllers/nginx/pkg/config/config.go index eb45991ca..eb8da5139 100644 --- a/controllers/nginx/pkg/config/config.go +++ b/controllers/nginx/pkg/config/config.go @@ -329,7 +329,7 @@ type Configuration struct { BindAddressIpv4 []string `json:"bind-address-ipv4,omitempty"` // Sets the ipv6 addresses on which the server will accept requests. - BindAddressIpv6 []string `json:"bind-address-ipv4,omitempty"` + BindAddressIpv6 []string `json:"bind-address-ipv6,omitempty"` } // NewDefault returns the default nginx configuration