@@ -186,22 +186,22 @@ func NewFromOperationSpec(spec OperationSpec) sdkpkg.PatchCollectorOperation {
186
186
spec .JQFilter ,
187
187
spec .ApiVersion , spec .Kind , spec .Namespace , spec .Name ,
188
188
WithSubresource (spec .Subresource ),
189
- WithIgnoreMissingObject (spec .IgnoreMissingObject ),
190
- WithIgnoreHookError (spec .IgnoreHookError ),
189
+ withIgnoreMissingObject (spec .IgnoreMissingObject ),
190
+ withIgnoreHookError (spec .IgnoreHookError ),
191
191
)
192
192
case MergePatch :
193
193
return NewMergePatchOperation (spec .MergePatch ,
194
194
spec .ApiVersion , spec .Kind , spec .Namespace , spec .Name ,
195
195
WithSubresource (spec .Subresource ),
196
- WithIgnoreMissingObject (spec .IgnoreMissingObject ),
197
- WithIgnoreHookError (spec .IgnoreHookError ),
196
+ withIgnoreMissingObject (spec .IgnoreMissingObject ),
197
+ withIgnoreHookError (spec .IgnoreHookError ),
198
198
)
199
199
case JSONPatch :
200
200
return NewJSONPatchOperation (spec .JSONPatch ,
201
201
spec .ApiVersion , spec .Kind , spec .Namespace , spec .Name ,
202
202
WithSubresource (spec .Subresource ),
203
- WithIgnoreMissingObject (spec .IgnoreMissingObject ),
204
- WithIgnoreHookError (spec .IgnoreHookError ),
203
+ withIgnoreMissingObject (spec .IgnoreMissingObject ),
204
+ withIgnoreHookError (spec .IgnoreHookError ),
205
205
)
206
206
}
207
207
0 commit comments