Преглед изворни кода

Merge pull request #2451 from smunilla/BZ1375946

a-o-i: Don't set unschedulable nodes as infra
Scott Dodson пре 8 година
родитељ
комит
96fea52130
1 измењених фајлова са 1 додато и 1 уклоњено
  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: