Skip to content

Commit

Permalink
DBG don't query pool slaves
Browse files Browse the repository at this point in the history
  • Loading branch information
ydirson committed Sep 18, 2024
1 parent b320293 commit fc79560
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ def __init__(self, master_hostname_or_ip):
timeout_secs=30 * 60)

logging.info("Getting Pool info for %r", master_hostname_or_ip)
for host_uuid in self.hosts_uuids():
if host_uuid != self.hosts[0].uuid:
host = Host(self, self.host_ip(host_uuid))
self.hosts.append(host)
#for host_uuid in self.hosts_uuids():
# if host_uuid != self.hosts[0].uuid:
# host = Host(self, self.host_ip(host_uuid))
# self.hosts.append(host)
self.uuid = self.master.xe('pool-list', minimal=True)
self.saved_uefi_certs = None

Expand Down

0 comments on commit fc79560

Please sign in to comment.