We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 559c838 commit 02480a9Copy full SHA for 02480a9
pkg/storage/pools.go
@@ -44,11 +44,7 @@ func PolicySSDFirst(s *Module) []filesystem.Pool {
44
// if missing ssd is supported, this policy
45
// will also use the hdd pools for provisioning
46
// and cache
47
- //
48
- // TODO: this is fully disabled now. and a ssd first policy
49
- // will act like a ssd-only policy.
50
- // to enable workloads on hdd, drop the false part.
51
- if false && kernel.GetParams().Exists(kernel.MissingSSD) {
+ if kernel.GetParams().Exists(kernel.MissingSSD) {
52
pools = append(pools, PolicyHDDOnly(s)...)
53
}
54
0 commit comments