Explorar el Código

a-o-i: Don't set unschedulable nodes as infra

Make sure we don't set an unschedulable node as infra as that can cause problems.

Fixes: Bug 1375946
Samuel Munilla hace 8 años
padre
commit
522a069d21
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      utils/src/ooinstall/cli_installer.py

+ 1 - 1
utils/src/ooinstall/cli_installer.py

@@ -791,7 +791,7 @@ def set_infra_nodes(hosts):
     if all(host.is_master() for host in hosts):
         infra_list = hosts
     else:
-        nodes_list = [host for host in hosts if host.is_node()]
+        nodes_list = [host for host in hosts if host.is_schedulable_node(hosts)]
         infra_list = nodes_list[:2]
 
     for host in infra_list: