mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +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)
|
errs = append(errs, err)
|
||||||
errorCnt++
|
errorCnt++
|
||||||
}
|
}
|
||||||
output <- k
|
if k != nil {
|
||||||
|
output <- k
|
||||||
|
}
|
||||||
totalCnt++
|
totalCnt++
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user