tpl/partial: Consolidate GoDoc

This commit is contained in:
Bjørn Erik Pedersen 2023-03-04 22:04:01 +01:00
parent 3bbeb5688c
commit f56ce01ae1
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -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()