Environment
Unraid OS Version:
7.2.2
Are you using a reverse proxy?
No - Issue tested with direct access to server.
Pre-submission Checklist
Issue Description
API query for disk or disks temperature returns null for SSD in cache. Query for array -> cache -> temp returns the correct temperature for those disks. Hard drives in array show temperature correctly.
Example with no Temp:
query ExampleQuery($diskId: PrefixedID!) {
disk(id: $diskId) {
name
temperature
}
}
Returns:
{
"data": {
"disk": {
"name": "Samsung SSD 990 EVO Plus 1TB",
"temperature": null
}
}
}
Example showing Temp:
query ExampleQuery {
array {
caches {
temp
name
}
}
}
Returns:
{
"data": {
"array": {
"caches": [
{
"temp": 33,
"name": "cache"
},
{
"temp": 33,
"name": "cache2"
}
]
}
}
}
Steps to Reproduce
- Query SSD though GraphQL Sandbox or API calling disk or disks (no temp shown)
- Querry SSD though array (temp shown)
Expected Behavior
Disk/Disks should return temperature of SSD similar to array->disks or array->cache
Actual Behavior
No temperature is shown for SSD from Disk/Disks
Additional Context
Environment
Unraid OS Version:
7.2.2
Are you using a reverse proxy?
No - Issue tested with direct access to server.
Pre-submission Checklist
Issue Description
API query for disk or disks temperature returns null for SSD in cache. Query for array -> cache -> temp returns the correct temperature for those disks. Hard drives in array show temperature correctly.
Example with no Temp:
Returns:
Example showing Temp:
Returns:
Steps to Reproduce
Expected Behavior
Disk/Disks should return temperature of SSD similar to array->disks or array->cache
Actual Behavior
No temperature is shown for SSD from Disk/Disks
Additional Context