From f56ce01ae1a3e5b399410ea8876ebc7321204edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 4 Mar 2023 22:04:01 +0100 Subject: [PATCH] tpl/partial: Consolidate GoDoc --- tpl/partials/partials.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tpl/partials/partials.go b/tpl/partials/partials.go index 26ce0f5c6..32f86b332 100644 --- a/tpl/partials/partials.go +++ b/tpl/partials/partials.go @@ -129,9 +129,7 @@ func (ns *Namespace) Include(ctx context.Context, name string, contextList ...an } func (ns *Namespace) includWithTimeout(ctx context.Context, name string, dataList ...any) includeResult { - // There are situation where the ctx we pass on to the partial lives longer than - // the partial itself. For example, when the partial returns the result from reosurces.ExecuteAsTemplate. - // Because of that, create a completely new context here. + // Create a new context with a timeout not connected to the incoming context. timeoutCtx, cancel := context.WithTimeout(context.Background(), ns.deps.Timeout) defer cancel()