Merge "Ensure all services disabled when node is failed"

This commit is contained in:
Zuul 2019-07-04 14:57:35 +00:00 committed by Gerrit Code Review
commit cde3747183
1 changed files with 4 additions and 0 deletions

View File

@ -626,6 +626,10 @@ SmErrorT sm_failover_fail_self()
DPRINTFE("Failed to set %s failed, error %s.", _host_name, sm_error_str(error));
return SM_FAILED;
}
char controller_domain[] = "controller";
sm_service_domain_utils_service_domain_disable_self(controller_domain);
return SM_OKAY;
}
// ****************************************************************************