Merge "Fix MNFA timer timeout condition check" into r/stx.3.0

This commit is contained in:
Zuul 2020-01-15 19:54:53 +00:00 committed by Gerrit Code Review
commit e7e89778b8
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ int nodeLinkClass::fsm ( struct nodeLinkClass::node * node_ptr )
return FAIL ;
}
/* if the multi-Node-Failure Avoidance timer rang then run its ecovery handler */
if ( mtcTimer_mnfa.ring == true )
/* if the multi-Node-Failure Avoidance timer rang then run its recovery handler */
if (( this->mnfa_timeout != 0 ) && ( mtcTimer_mnfa.ring == true ))
{
mtcTimer_mnfa.ring = false ;
mnfa_exit ( true );