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 61e0a9b commit 1839979Copy full SHA for 1839979
src/awareness.jl
@@ -621,8 +621,8 @@ function identifyStorage()
621
storage_device = Dict()
622
storage_features[string(i)] = storage_device
623
624
- storage_type = device["rota"] ? "HDD" : "SSD"; println(device["tran"])
625
- storage_interface = uppercase(device["tran"])
+ storage_type = device["rota"] ? "HDD" : "SSD";
+ storage_interface = isnothing(device["tran"]) ? "unknown" : uppercase(device["tran"])
626
storage_size = device["size"]
627
storage_latency = "unset"
628
storage_bandwidth = "unset"
0 commit comments