aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_std.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2023-08-16 23:47:43 -0700
committerchrislu <chris.lu@gmail.com>2023-08-16 23:47:43 -0700
commit3852307e9444595f1cf5db15b703493886c3248e (patch)
treeb0543cdd7df6a16f2c77f7ed23a22756db7df843 /weed/command/mount_std.go
parent6c7fa567d4b94790f213d0546b365a4e989a0e3d (diff)
downloadseaweedfs-3852307e9444595f1cf5db15b703493886c3248e.tar.xz
seaweedfs-3852307e9444595f1cf5db15b703493886c3248e.zip
renaming
Diffstat (limited to 'weed/command/mount_std.go')
-rw-r--r--weed/command/mount_std.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go
index 86c3e521e..f32d328b0 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -225,9 +225,9 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
DiskType: types.ToDiskType(*option.diskType),
ChunkSizeLimit: int64(chunkSizeLimitMB) * 1024 * 1024,
ConcurrentWriters: *option.concurrentWriters,
- CacheDir: *option.cacheDir,
- CacheSizeMB: *option.cacheSizeMB,
- CacheDirWrite: *option.cacheDirWrite,
+ CacheDirForRead: *option.cacheDirForRead,
+ CacheSizeMBForRead: *option.cacheSizeMBForRead,
+ CacheDirForWrite: *option.cacheDirForWrite,
DataCenter: *option.dataCenter,
Quota: int64(*option.collectionQuota) * 1024 * 1024,
MountUid: uid,