From 1ac0c3eecb2b7517dcd792f4a8e878046ab124a3 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 7 Apr 2026 23:25:54 +0100 Subject: [PATCH] vfs: fix tests after --vfs-handle-caching In this commit 0db3e7a2a0e6a989 vfs: fix slow nfs serve by adding --vfs-handle-caching We added --vfs-handle-caching but unfortunately forgot to disable it for the TestRWCacheUpdate test. --- vfs/read_write_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/vfs/read_write_test.go b/vfs/read_write_test.go index 5b30ed675..b0e05a84e 100644 --- a/vfs/read_write_test.go +++ b/vfs/read_write_test.go @@ -723,6 +723,7 @@ func TestRWCacheUpdate(t *testing.T) { opt.CacheMode = vfscommon.CacheModeFull opt.WriteBack = writeBackDelay opt.DirCacheTime = fs.Duration(100 * time.Millisecond) + opt.HandleCaching = 0 r, vfs := newTestVFSOpt(t, &opt) if r.Fremote.Precision() == fs.ModTimeNotSupported {