ETERNUS Sample rate

Hi.
I am use DX200 S4.

When I tried to add new storage, I received a notification about the error.

SSH data test:NOK

Sample rate is 300sec seconds insted of 300 seconds.


my fix:
config_check.sh:
-         sample_rate=`echo "$perform" | grep Interval | cut -d '[' -f 2 | cut -d 'sec]' -f 1'`
+        sample_rate=`echo "$perform" | grep Interval | cut -d '[' -f 2 | cut -d 'sec]' -f 1 |  sed 's/sec//g'`

DeviceConnTest.pm:
   if ($line =~ m/Interval/){
              $line =~ s/Interval//g;
              $line =~ s/\[//g;
-            $line =~ s/\]//g;

   if ($line =~ m/Interval/){
              $line =~ s/Interval//g;
              $line =~ s/\[//g;
+           $line =~ s/sec\]//g;

Comments

  • Hi,

    we have already fixed it in config_ check.sh but forgotten about DeviceConnTest.pm, thanks!


Sign In or Register to comment.