From f8e84a9497d9de6ebd85519ca5b432c35c397a19 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Wed, 20 Nov 2024 04:20:59 -0600 Subject: [PATCH] Update connectionResetByPeerAdvice doc comments Add missing . --- annotations.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/annotations.go b/annotations.go index 7f8a549..2c5eafe 100644 --- a/annotations.go +++ b/annotations.go @@ -21,9 +21,10 @@ const runtimeTimeoutReachedAdvice string = "plugin runtime exceeded specified ti // connectionResetByPeerAdvice offers advice to the sysadmin for remediating // "read: connection reset by peer" errors. The cause of this error can vary -// but is often associated access control mechanisms such as firewalls, +// but is often associated with access control mechanisms such as firewalls, // misconfigured IIS sites (e.g., missing certificate binding), overloaded -// services at maximum connection capacity or otherwise misconfigured services. +// services at maximum connection capacity or otherwise misconfigured +// services. // // See also https://stackoverflow.com/questions/1434451 const connectionResetByPeerAdvice string = "consider checking firewall, certificate/port bindings or maximum supported connections for remote service"