From 7928f7a3130d6c490258cd7086b663dc15bcd633 Mon Sep 17 00:00:00 2001 From: yayogev Date: Mon, 28 Aug 2017 13:45:07 +0300 Subject: use neutron DB name, not always 'neutron' Change-Id: I971f22473d4132bde17e0a44ada3b6a8330522b4 Signed-off-by: yayogev --- app/discover/fetchers/db/db_fetch_az_network_hosts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/discover/fetchers/db/db_fetch_az_network_hosts.py') diff --git a/app/discover/fetchers/db/db_fetch_az_network_hosts.py b/app/discover/fetchers/db/db_fetch_az_network_hosts.py index 09043ea..700b1cd 100644 --- a/app/discover/fetchers/db/db_fetch_az_network_hosts.py +++ b/app/discover/fetchers/db/db_fetch_az_network_hosts.py @@ -17,9 +17,9 @@ class DbFetchAZNetworkHosts(DbAccess): def get(self, id): query = """ SELECT DISTINCT host, host AS id, configurations - FROM neutron.agents + FROM {}.agents WHERE agent_type = 'Metadata agent' - """ + """.format(self.neutron_db) results = self.get_objects_list(query, "host") for r in results: self.set_host_details(r) -- cgit 1.2.3-korg