mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
tpl/partial: Consolidate GoDoc
This commit is contained in:
parent
3bbeb5688c
commit
f56ce01ae1
1 changed files with 1 additions and 3 deletions
|
@ -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 {
|
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
|
// Create a new context with a timeout not connected to the incoming context.
|
||||||
// the partial itself. For example, when the partial returns the result from reosurces.ExecuteAsTemplate.
|
|
||||||
// Because of that, create a completely new context here.
|
|
||||||
timeoutCtx, cancel := context.WithTimeout(context.Background(), ns.deps.Timeout)
|
timeoutCtx, cancel := context.WithTimeout(context.Background(), ns.deps.Timeout)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue