From 57dbb993af65533d41fa821a79dea901b615f162 Mon Sep 17 00:00:00 2001 From: Will Assis Date: Fri, 14 Nov 2025 09:36:23 -0300 Subject: [PATCH] yo --- pkg/storage/unified/resource/storage_backend.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/storage/unified/resource/storage_backend.go b/pkg/storage/unified/resource/storage_backend.go index 0de97b0355e..be9e516f90e 100644 --- a/pkg/storage/unified/resource/storage_backend.go +++ b/pkg/storage/unified/resource/storage_backend.go @@ -1239,6 +1239,10 @@ func (k *kvStorageBackend) GetResourceLastImportTimes(ctx context.Context) iter. } } +func (b *kvStorageBackend) updateLastImportTime(ctx, now time.Time) error { + return nil +} + func (b *kvStorageBackend) ProcessBulk(ctx context.Context, setting BulkSettings, iter BulkRequestIterator) *resourcepb.BulkResponse { // TODO cross-node lock err := b.bulkLock.Start(setting.Collection)