Skip to content

Commit 3c3eec6

Browse files
committed
providers/redfish: fix features typo
1 parent 000f06f commit 3c3eec6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

providers/providers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const (
3030
// FeatureBiosFirmwareUpdate means an implementation that updates the BIOS firmware
3131
FeatureBiosFirmwareUpdate registrar.Feature = "biosfirwareupdate"
3232
// FeaturePowersensors indicates an implementation that returns Power sensor information
33-
FeaturePowersensors registrar.Feature = "powersensors"
33+
FeaturePowerSensors registrar.Feature = "powersensors"
3434
// FeatureTemperatureSensors indicates an implementation that returns Temperature sensor information
3535
FeatureTemperatureSensors registrar.Feature = "temperaturesensors"
3636
// FeatureFanSensors indicates an implementation that returns Fan sensor information

providers/redfish/redfish.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var (
2828
Features = registrar.Features{
2929
providers.FeaturePowerSet,
3030
providers.FeaturePowerState,
31-
providers.FeaturePowersensors,
31+
providers.FeaturePowerSensors,
3232
providers.FeatureTemperatureSensors,
3333
providers.FeatureFanSensors,
3434
providers.FeatureChassisHealth,

0 commit comments

Comments
 (0)