Skip to content

Commit 61e0a9b

Browse files
storage identiication correction
1 parent 6083022 commit 61e0a9b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/awareness.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,12 +617,11 @@ function identifyStorage()
617617

618618
i = 1
619619
for device in dict["blockdevices"]
620-
println(device["type"])
621620
if (device["type"] == "disk")
622621
storage_device = Dict()
623622
storage_features[string(i)] = storage_device
624623

625-
storage_type = device["rota"] ? "HDD" : "SSD"
624+
storage_type = device["rota"] ? "HDD" : "SSD"; println(device["tran"])
626625
storage_interface = uppercase(device["tran"])
627626
storage_size = device["size"]
628627
storage_latency = "unset"

0 commit comments

Comments
 (0)