diff --git a/inventory_provider/routes/testing.py b/inventory_provider/routes/testing.py index 45fdd056b5f5dbe4f7df4ac9d947db4f4ff0caaa..cbb06abe2967577a5c4aa8eb851d4c05a77dfaed 100644 --- a/inventory_provider/routes/testing.py +++ b/inventory_provider/routes/testing.py @@ -54,12 +54,9 @@ def update_interface_statuses(): def juniper_addresses(): # TODO: this route (and corant, infinera routes) can be removed r = common.get_current_redis() - routers = [] - for k in r.keys('junosspace:*'): - info = r.get(k.decode('utf-8')) - assert info # sanity: value shouldn't be empty - info = json.loads(info.decode('utf-8')) - routers.append(info['address']) + routers = r.get('netdash') + assert routers # sanity: value shouldn't be empty + routers = json.loads(routers.decode('utf-8')) return jsonify(routers)