From d92420d4f4b5de410d4801c7f122dddd6b46e008 Mon Sep 17 00:00:00 2001 From: Dan Laine Date: Tue, 30 Jun 2020 17:13:06 -0400 Subject: [PATCH] fix typo causing infinite loop --- api/health/checks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/health/checks.go b/api/health/checks.go index 8e56dc7..20dd6b1 100644 --- a/api/health/checks.go +++ b/api/health/checks.go @@ -74,7 +74,7 @@ func (mc monotonicCheck) Execute() (interface{}, error) { if mc.passed { return nil, nil } - details, pass := mc.Execute() + details, pass := mc.check.Execute() if pass == nil { mc.passed = true }