From eb90e673396e7f8dfd1beb9b04b122699f5960e4 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 20 Aug 2025 09:49:54 +0300 Subject: [PATCH] classic storage by default --- storage/file-client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/file-client.go b/storage/file-client.go index e1414c7d..1cc61d99 100644 --- a/storage/file-client.go +++ b/storage/file-client.go @@ -72,7 +72,7 @@ func (me *fileClientImpl) Close() error { } var defaultFileIo func() fileIo = func() fileIo { - return &mmapFileIo{} + return &classicFileIo{} } func init() { -- 2.51.0