From 21d237792b5928fbf08cc848f2bcb36de5fd2996 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Thu, 29 Dec 2016 17:59:56 -0500 Subject: [PATCH] Fix gofmt So `make fmt` passes --- core/pkg/ingress/controller/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/pkg/ingress/controller/controller.go b/core/pkg/ingress/controller/controller.go index 29e889f6a..46679ee99 100644 --- a/core/pkg/ingress/controller/controller.go +++ b/core/pkg/ingress/controller/controller.go @@ -992,7 +992,7 @@ func (ic *GenericController) getEndpoints( } // check for invalid port value - if targetPort <=0 { + if targetPort <= 0 { continue }