Storage: Fix list in mode 4 (#90354)

pull/90368/head
Todd Treece 10 months ago committed by GitHub
parent d3a75a42a0
commit 66a384247c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      pkg/apiserver/rest/dualwriter_mode4.go

@ -55,9 +55,7 @@ func (d *DualWriterMode4) Update(ctx context.Context, name string, objInfo rest.
}
func (d *DualWriterMode4) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
//TODO: implement List
klog.Error("List not implemented")
return nil, nil
return d.Storage.List(ctx, options)
}
func (d *DualWriterMode4) Destroy() {

Loading…
Cancel
Save