mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 08:20:59 +00:00
Merge pull request #1932 from haiyanmeng/fix
Avoid processing the nil pointer returned by kustomizationResultAdapter
This commit is contained in:
@@ -193,7 +193,9 @@ func processQuery(ctx context.Context, gcl GhClient, query string,
|
||||
errs = append(errs, err)
|
||||
errorCnt++
|
||||
}
|
||||
output <- k
|
||||
if k != nil {
|
||||
output <- k
|
||||
}
|
||||
totalCnt++
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user