From 1767c541d359055bfe8d8addd466281a5dc866db Mon Sep 17 00:00:00 2001 From: Ruben Vargas Date: Thu, 16 Jan 2020 15:34:04 -0600 Subject: [PATCH] Address formating comments Signed-off-by: Ruben Vargas --- pkg/storage/elasticsearch.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/storage/elasticsearch.go b/pkg/storage/elasticsearch.go index 7d5699031a..d8038ae0c7 100644 --- a/pkg/storage/elasticsearch.go +++ b/pkg/storage/elasticsearch.go @@ -39,8 +39,7 @@ type ElasticsearchDeployment struct { } func (ed *ElasticsearchDeployment) injectArguments(container *corev1.Container) { - container.Args = append(container.Args, - "--es.server-urls="+elasticsearchURL) + container.Args = append(container.Args, "--es.server-urls="+elasticsearchURL) if util.FindItem("--es.tls=", container.Args) == "" { container.Args = append(container.Args, "--es.tls=true") }