You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected Behavior
No bug in check snapshot_health if volume is 0 sized
Actual Behavior
Illegal division by zero at check_netapp_ontap.pl line 1464
How to resolve Behavior
at line 1458 add space-total condition :
From :
if ($hrefVolInfo->{$strVol}->{'state'} eq 'online') {
To :
if ( ($hrefVolInfo->{$strVol}->{'state'} eq 'online') && ($hrefVolInfo->{$strVol}->{'space-total'} ne 0) ) {
The text was updated successfully, but these errors were encountered:
Issue Type
Bug report
Issue Detail
Expected Behavior
No bug in check snapshot_health if volume is 0 sized
Actual Behavior
Illegal division by zero at check_netapp_ontap.pl line 1464
How to resolve Behavior
at line 1458 add space-total condition :
From :
if ($hrefVolInfo->{$strVol}->{'state'} eq 'online') {
To :
if ( ($hrefVolInfo->{$strVol}->{'state'} eq 'online') && ($hrefVolInfo->{$strVol}->{'space-total'} ne 0) ) {
The text was updated successfully, but these errors were encountered: