Skip to content

Commit

Permalink
fix(axis-snmp): fix false positive on fan status (#5356)
Browse files Browse the repository at this point in the history
Refs: CTOR-1252
  • Loading branch information
rmorandell-pgum authored Dec 20, 2024
1 parent 37b8c1c commit dedecee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hardware/devices/video/axis/snmp/mode/components/fan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ use strict;
use warnings;

my %map_fan_status = (
0 => 'ok',
1 => 'failed',
1 => 'ok',
2 => 'failed',
);

my $mapping = {
Expand Down

0 comments on commit dedecee

Please sign in to comment.