Skip to content

Commit

Permalink
Merge pull request #793 from forta-network/ali/fix-healthcheck-eval
Browse files Browse the repository at this point in the history
Fix healthcheck evaluation
  • Loading branch information
aomerk authored Jul 12, 2023
2 parents 8a48afd + ce73011 commit d2fbbdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/agentgrpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func evaluateHealthCheckResult(invokeErr error, resp *protocol.HealthCheckRespon
var err error

// catch invocation errors
if invokeErr != nil && status.Code(err) != codes.Unimplemented {
if invokeErr != nil && status.Code(invokeErr) != codes.Unimplemented {
err = multierror.Append(err, invokeErr)
}

Expand Down

0 comments on commit d2fbbdc

Please sign in to comment.