From 5b66d0adbad05f4e3becf518b026cea7fb12aaa5 Mon Sep 17 00:00:00 2001 From: Oleksii Kliukin Date: Mon, 10 Apr 2017 16:57:33 +0200 Subject: [PATCH] Correct go json tags (extra space). --- pkg/util/config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/util/config/config.go b/pkg/util/config/config.go index e8b5c4a77..eda40742e 100644 --- a/pkg/util/config/config.go +++ b/pkg/util/config/config.go @@ -41,8 +41,8 @@ type Config struct { ServiceAccountName string `split_words:"true" default:"operator"` DbHostedZone string `split_words:"true" default:"db.example.com"` EtcdScope string `split_words:"true" default:"service"` - WALES3Bucket string `envconfig: "wal_s3_bucket"` - KubeIAMRole string `envconfig: "kube_iam_role"` + WALES3Bucket string `envconfig:"wal_s3_bucket"` + KubeIAMRole string `envconfig:"kube_iam_role"` DebugLogging bool `split_words:"true" default:"false"` }