Skip to content
Snippets Groups Projects
Commit 410484d5 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

force to unsupervise even if the tree is down

parent 290d1b2b
No related branches found
No related tags found
No related merge requests found
......@@ -692,7 +692,10 @@ static int async(pidtree_t *apidt, unsigned int i, unsigned int what, ssexec_t *
log_trace("beginning of the process of: ", name) ;
if (FLAGS_ISSET(apidt[i].state, (!what ? FLAGS_DOWN : FLAGS_UP))) {
if (FLAGS_ISSET(apidt[i].state, (!what ? FLAGS_DOWN : FLAGS_UP)) ||
/** force to pass through unsupersive process even
* if the tree is marked down */
FLAGS_ISSET(apidt[i].state, (what ? FLAGS_DOWN : FLAGS_UP)) && what == 2) {
if (!FLAGS_ISSET(apidt[i].state, FLAGS_BLOCK)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment