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 6083022 commit 61e0a9bCopy full SHA for 61e0a9b
src/awareness.jl
@@ -617,12 +617,11 @@ function identifyStorage()
617
618
i = 1
619
for device in dict["blockdevices"]
620
- println(device["type"])
621
if (device["type"] == "disk")
622
storage_device = Dict()
623
storage_features[string(i)] = storage_device
624
625
- storage_type = device["rota"] ? "HDD" : "SSD"
+ storage_type = device["rota"] ? "HDD" : "SSD"; println(device["tran"])
626
storage_interface = uppercase(device["tran"])
627
storage_size = device["size"]
628
storage_latency = "unset"
0 commit comments