Skip to content

Commit

Permalink
Merge pull request #72 from getamis/remove-annoying-logs
Browse files Browse the repository at this point in the history
health: remove annoying health check logs
  • Loading branch information
markya0616 authored Aug 6, 2019
2 parents 98d9de2 + 7d5f035 commit d96067d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion health/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ func (s *server) Liveness(ctx context.Context, req *EmptyRequest) (*EmptyRespons
// Readiness is represented that whether application is ready to start accepting traffic or not.
func (s *server) Readiness(ctx context.Context, req *EmptyRequest) (*EmptyResponse, error) {
if err := checkHealth(ctx, s.checkFns); err != nil {
log.Error("Failed to check readiness", "err", err)
return nil, status.Error(codes.Unavailable, err.Error())
}
return nil, nil
Expand Down

0 comments on commit d96067d

Please sign in to comment.