Commit 3ca48ed6 authored by Geoff Simmons's avatar Geoff Simmons

Minor indentation change to make golint happy.

parent f8ce7f91
...@@ -115,11 +115,11 @@ func (worker *NamespaceWorker) getAllServiceEndpoints( ...@@ -115,11 +115,11 @@ func (worker *NamespaceWorker) getAllServiceEndpoints(
if !reflect.DeepEqual(selector, nsSvc.Spec.Selector) { if !reflect.DeepEqual(selector, nsSvc.Spec.Selector) {
continue continue
} }
if eps, err := worker.getServiceEndpoints(nsSvc); err != nil { eps, err := worker.getServiceEndpoints(nsSvc)
if err != nil {
return epSlice, err return epSlice, err
} else {
epSlice = append(epSlice, eps)
} }
epSlice = append(epSlice, eps)
} }
return return
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment