From 52fe75085b345d80803550908855dac5a0ac2d4e Mon Sep 17 00:00:00 2001 From: m-okeefe Date: Tue, 29 Jan 2019 14:54:38 -0800 Subject: [PATCH] removes injected latency for health check --- src/productcatalogservice/server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/productcatalogservice/server.go b/src/productcatalogservice/server.go index 136f00f..de79950 100644 --- a/src/productcatalogservice/server.go +++ b/src/productcatalogservice/server.go @@ -242,7 +242,6 @@ func parseCatalog() []*pb.Product { } func (p *productCatalog) Check(ctx context.Context, req *healthpb.HealthCheckRequest) (*healthpb.HealthCheckResponse, error) { - injectSleep() return &healthpb.HealthCheckResponse{Status: healthpb.HealthCheckResponse_SERVING}, nil }