From 1154ed866f5d40aac82250e09d616707e4d07aa0 Mon Sep 17 00:00:00 2001 From: Colin Pistell Date: Fri, 12 Jul 2024 19:22:22 +0000 Subject: [PATCH] updating timeout comment based on feedback --- go/rtl/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/rtl/auth.go b/go/rtl/auth.go index 0ea7d9fc7..0efa39a73 100644 --- a/go/rtl/auth.go +++ b/go/rtl/auth.go @@ -134,7 +134,7 @@ func (s *AuthSession) Do(result interface{}, method, ver, path string, reqPars m } else if s.Config.Context != nil { ctx = s.Config.Context } else { - // create request context with timeout + // create request context with timeout from options or else config or else 120 seconds var timeoutInSeconds int32 = 120 //seconds if s.Config.Timeout != 0 { timeoutInSeconds = s.Config.Timeout