mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
Deprecate caching for erasure/distributed mode (#13909)
Fixes: #13907 Also removing default value of `writethrough` for cache commit which was interfering with cache_after setting
This commit is contained in:
3
internal/config/cache/lookup.go
vendored
3
internal/config/cache/lookup.go
vendored
@@ -56,7 +56,6 @@ const (
|
||||
DefaultAfter = "0"
|
||||
DefaultWaterMarkLow = "70"
|
||||
DefaultWaterMarkHigh = "80"
|
||||
DefaultCacheCommit = WriteThrough
|
||||
)
|
||||
|
||||
// DefaultKVS - default KV settings for caching.
|
||||
@@ -96,7 +95,7 @@ var (
|
||||
},
|
||||
config.KV{
|
||||
Key: Commit,
|
||||
Value: DefaultCacheCommit,
|
||||
Value: "",
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user