This commit is contained in:
Scott E. Graves 2024-07-27 08:23:20 -05:00
parent 2a5df890f7
commit 681a3eec53
2 changed files with 3 additions and 3 deletions

View File

@ -885,7 +885,7 @@ public:
DECODE_OR_RETURN(request, handle);
data_buffer buffer;
if ((ret = this->fuse_read(path.c_str(), buffer.data(), read_size,
if ((ret = this->fuse_read(path.c_str(), &buffer, read_size,
read_offset, handle)) > 0) {
response.encode(buffer.data(), buffer.size());
}

View File

@ -58,7 +58,7 @@ const auto DEFAULT_SIA_CONFIG = "{\n"
#if defined(_WIN32)
" \"EnableMountManager\": false,\n"
#endif
" \"EventLevel\": \"normal\",\n"
" \"EventLevel\": \"info\",\n"
" \"EvictionDelayMinutes\": 10,\n"
" \"EvictionUsesAccessedTime\": false,\n"
" \"HighFreqIntervalSeconds\": 30,\n"
@ -106,7 +106,7 @@ const auto DEFAULT_S3_CONFIG = "{\n"
#if defined(_WIN32)
" \"EnableMountManager\": false,\n"
#endif
" \"EventLevel\": \"normal\",\n"
" \"EventLevel\": \"info\",\n"
" \"EvictionDelayMinutes\": 10,\n"
" \"EvictionUsesAccessedTime\": false,\n"
" \"HighFreqIntervalSeconds\": 30,\n"