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

Merge branch 'BZ1308440' of https://github.com/smunilla/openshift-ansible

Brenton Leanhardt пре 9 година
родитељ
комит
6c0078c7e0
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      utils/src/ooinstall/cli_installer.py

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

@@ -535,7 +535,7 @@ def get_installed_hosts(hosts, callback_facts):
         lb_hostname = callback_facts[first_master.connect_to]['master'].get('cluster_hostname', '')
         lb_host = next(host for host in hosts if host.connect_to == lb_hostname)
         installed_hosts.append(lb_host)
-    except KeyError:
+    except (KeyError, StopIteration):
         pass