fix naming error and sentence breaking in pkg/proxy/healthcheck

Change-Id: Iee36ff4e497052f473f95f8f0a92421d85e3c416
This commit is contained in:
m1093782566 2016-08-25 11:53:42 +08:00
parent e5fbea62c6
commit e16e5c4fec
2 changed files with 4 additions and 4 deletions

View File

@ -33,12 +33,12 @@ func UpdateEndpoints(serviceName types.NamespacedName, endpointUids sets.String)
healthchecker.mutationRequestChannel <- req healthchecker.mutationRequestChannel <- req
} }
func updateServiceListener(serviceName types.NamespacedName, listenPort int, addOrDelete bool) bool { func updateServiceListener(serviceName types.NamespacedName, listenPort int, add bool) bool {
responseChannel := make(chan bool) responseChannel := make(chan bool)
req := &proxyListenerRequest{ req := &proxyListenerRequest{
serviceName: serviceName, serviceName: serviceName,
listenPort: uint16(listenPort), listenPort: uint16(listenPort),
add: addOrDelete, add: add,
responseChannel: responseChannel, responseChannel: responseChannel,
} }
healthchecker.listenerRequestChannel <- req healthchecker.listenerRequestChannel <- req
@ -50,7 +50,7 @@ func AddServiceListener(serviceName types.NamespacedName, listenPort int) bool {
return updateServiceListener(serviceName, listenPort, true) return updateServiceListener(serviceName, listenPort, true)
} }
// DeleteServiceListener Request addition of a listener for a service's health check // DeleteServiceListener Request deletion of a listener for a service's health check
func DeleteServiceListener(serviceName types.NamespacedName, listenPort int) bool { func DeleteServiceListener(serviceName types.NamespacedName, listenPort int) bool {
return updateServiceListener(serviceName, listenPort, false) return updateServiceListener(serviceName, listenPort, false)
} }

View File

@ -68,7 +68,7 @@ func (h *proxyHC) handleHealthCheckRequest(rw http.ResponseWriter, serviceName s
s, ok := h.serviceEndpointsMap.Get(serviceName) s, ok := h.serviceEndpointsMap.Get(serviceName)
if !ok { if !ok {
glog.V(4).Infof("Service %s not found or has no local endpoints", serviceName) glog.V(4).Infof("Service %s not found or has no local endpoints", serviceName)
sendHealthCheckResponse(rw, http.StatusServiceUnavailable, "No Service Endpoints Not Found") sendHealthCheckResponse(rw, http.StatusServiceUnavailable, "No Service Endpoints Found")
return return
} }
numEndpoints := len(*s.(*serviceEndpointsList).endpoints) numEndpoints := len(*s.(*serviceEndpointsList).endpoints)