diff options
Diffstat (limited to 'app/discover/fetchers/cli')
-rw-r--r-- | app/discover/fetchers/cli/cli_fetch_oteps_lxb.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/discover/fetchers/cli/cli_fetch_oteps_lxb.py b/app/discover/fetchers/cli/cli_fetch_oteps_lxb.py index 1e65a14..0b425f6 100644 --- a/app/discover/fetchers/cli/cli_fetch_oteps_lxb.py +++ b/app/discover/fetchers/cli/cli_fetch_oteps_lxb.py @@ -69,7 +69,8 @@ class CliFetchOtepsLxb(CliAccess, DbAccess): return otep def get_udp_port(self, otep): - table_name = "neutron.ml2_" + otep['overlay_type'] + "_endpoints" + table_name = "{}.ml2_{}_endpoints".format(self.neutron_db, + otep['overlay_type']) results = None try: results = self.get_objects_list_for_id( |