From 0a4cc0474df9854851a95e1b283468d6d62344b8 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Fri, 14 Jul 2023 11:01:32 -0400 Subject: Suppress non-error of cancelled context causing probe send to fail It is not an error (per se) for a probe not to be able to be sent when the context of its execution is cancelled. Log the error when debugging only. Signed-off-by: Will Hawkins --- rpm/rpm.go | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'rpm') diff --git a/rpm/rpm.go b/rpm/rpm.go index 0f51461..ff483ff 100644 --- a/rpm/rpm.go +++ b/rpm/rpm.go @@ -249,13 +249,26 @@ func ResponsivenessProber[BucketType utilities.Number]( (*selfProbeConnection).Client(), selfProbeConfiguration.URL, selfProbeConfiguration.Host, - probeDirection, utilities.Conditional(probeDirection == lgc.LGC_DOWN, probe.SelfDown, probe.SelfUp), probeCount, captureExtendedStats, debugging, ) if err != nil { + // We may see an error here because the prober context was cancelled + // and requests were attempting to be sent. This situation is not an + // error (per se) so we will not log it as such. + + if proberCtx.Err() != nil { + if debug.IsDebug(debugging.Level) { + fmt.Printf( + "(%s) Failed to send a probe (id: %v) because the prober context was cancelled.\n", + debugging.Prefix, + probeCount, + ) + } + return + } fmt.Printf( "(%s) There was an error sending a self probe with Id %d: %v\n", debugging.Prefix, -- cgit v1.2.3