Skip to content

Commit

Permalink
nanny: recheck when not dead
Browse files Browse the repository at this point in the history
  • Loading branch information
wipawel authored and mtomaschewski committed Apr 2, 2015
1 parent 079416c commit 19248b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nanny/nanny.c
Expand Up @@ -232,7 +232,7 @@ ni_nanny_recheck_do(ni_nanny_t *mgr)
for (i = 0; i < mgr->recheck.count; ++i) {
ni_ifworker_t *w = mgr->recheck.data[i];

if (!w->failed && !w->done && !w->pending && !ni_ifworker_is_running(w))
if (!w->dead && !w->pending && !w->kickstarted && !w->done && !w->failed)
count += ni_nanny_recheck(mgr, w);
}

Expand Down

0 comments on commit 19248b2

Please sign in to comment.