From d2f856b920ec165d24c391017b773fec930d5a32 Mon Sep 17 00:00:00 2001 From: Gianmaria Del Monte Date: Wed, 30 Nov 2022 15:30:24 +0100 Subject: [PATCH] fix refresh lock for cephfs storage driver --- pkg/storage/fs/cephfs/cephfs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/storage/fs/cephfs/cephfs.go b/pkg/storage/fs/cephfs/cephfs.go index 39f9228e4e..53c7d376d7 100644 --- a/pkg/storage/fs/cephfs/cephfs.go +++ b/pkg/storage/fs/cephfs/cephfs.go @@ -625,7 +625,7 @@ func (fs *cephfs) GetLock(ctx context.Context, ref *provider.Reference) (*provid return nil, errtypes.NotSupported("unimplemented") } -func (fs *cephfs) RefreshLock(ctx context.Context, ref *provider.Reference, lock *provider.Lock) error { +func (fs *cephfs) RefreshLock(ctx context.Context, ref *provider.Reference, lock *provider.Lock, existingLockID string) error { return errtypes.NotSupported("unimplemented") }