| Index: filter/dscache/plan.go
|
| diff --git a/filter/dscache/plan.go b/filter/dscache/plan.go
|
| index 71a19e0f08e73d11a18869b6920d58c1b1ebadc3..7dbdbf1e4bc7210300a4777fc237014f56804475 100644
|
| --- a/filter/dscache/plan.go
|
| +++ b/filter/dscache/plan.go
|
| @@ -92,7 +92,7 @@ func makeFetchPlan(c context.Context, aid, ns string, f *facts) *plan {
|
| p := plan{
|
| keepMeta: f.getMeta != nil,
|
| decoded: make([]ds.PropertyMap, len(f.lockItems)),
|
| - lme: errors.LazyMultiError{Size: len(f.lockItems)},
|
| + lme: errors.NewLazyMultiError(len(f.lockItems)),
|
| }
|
| for i, lockItm := range f.lockItems {
|
| m := f.getMeta.GetSingle(i)
|
|
|