Merge "Prevent early active monitoring of compute processes in AIO"

This commit is contained in:
Zuul 2018-11-27 23:00:17 +00:00 committed by Gerrit Code Review
commit 1ee175baef
1 changed files with 3 additions and 1 deletions

View File

@ -2032,7 +2032,9 @@ void pmon_service ( pmon_ctrl_type * ctrl_ptr )
/* Audit to ensure that running processes are
* registered with the kernel */
if (( process_config[i].registered == false ) &&
if (( process_config[i].stage != PMON_STAGE__POLLING ) &&
( process_config[i].stage != PMON_STAGE__START_WAIT ) &&
( process_config[i].registered == false ) &&
( _pmon_ctrl_ptr->event_mode ) &&
( process_config[i].restart == false ) &&
( process_config[i].failed == false ) &&