Storage: Fix list in mode 4 (#90354)

This commit is contained in:
Todd Treece
2024-07-12 08:20:13 -04:00
committed by GitHub
parent d3a75a42a0
commit 66a384247c
+1 -3
View File
@@ -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() {