From 3cab180956702472052204aad6e469f64f34f3b7 Mon Sep 17 00:00:00 2001 From: MickaelK Date: Wed, 3 Apr 2024 21:50:26 +1100 Subject: [PATCH] fix (nfs4): broken nfs4 plugin --- server/plugin/plg_backend_nfs4/index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/plugin/plg_backend_nfs4/index.go b/server/plugin/plg_backend_nfs4/index.go index c36434f38..4576c217b 100644 --- a/server/plugin/plg_backend_nfs4/index.go +++ b/server/plugin/plg_backend_nfs4/index.go @@ -154,7 +154,7 @@ func (this Nfs4Share) Rm(path string) error { } func (this Nfs4Share) Mv(from string, to string) error { - return this.client.Rename(from, to) + return ErrNotImplemented } func (this Nfs4Share) Touch(path string) error {