Skip to content

Commit 02480a9

Browse files
committed
enable no ssd support using missing-ssd
1 parent 559c838 commit 02480a9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pkg/storage/pools.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,7 @@ func PolicySSDFirst(s *Module) []filesystem.Pool {
4444
// if missing ssd is supported, this policy
4545
// will also use the hdd pools for provisioning
4646
// 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) {
47+
if kernel.GetParams().Exists(kernel.MissingSSD) {
5248
pools = append(pools, PolicyHDDOnly(s)...)
5349
}
5450

0 commit comments

Comments
 (0)