From eb124316c9961e14dcbdeb3943f60134ea24f241 Mon Sep 17 00:00:00 2001 From: trapexit Date: Mon, 23 Jun 2025 22:39:42 -0500 Subject: [PATCH] Set default read thread count to 0 (#1484) --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cpp b/src/config.cpp index 253e9ef7..d4b476d6 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -129,7 +129,7 @@ Config::Config() statfs_ignore(StatFSIgnore::ENUM::NONE), symlinkify(false), symlinkify_timeout(3600), - fuse_read_thread_count(-1), + fuse_read_thread_count(0), fuse_process_thread_count(-1), fuse_process_thread_queue_depth(2), fuse_pin_threads("false"),