Skip to content
Snippets Groups Projects
Commit f42836f6 authored by Release Webservice's avatar Release Webservice
Browse files

Finished release 0.54.

parents 9321ed3b f6b63821
No related branches found
No related tags found
No related merge requests found
......@@ -2,8 +2,11 @@
All notable changes to this project will be documented in this file.
## [0.54] - 2020-10-07
- DBOARD3-334: peer-info classifier performance improvement
## [0.53] - 2020-09-23
- DBOARD-328: fixed improper response when router is unknown
- DBOARD3-328: fixed improper response when router is unknown
## [0.52] - 2020-09-07
- POL1-228 (and others):
......
......@@ -242,12 +242,12 @@ def ix_peering_info(peer_info):
keyword = description.split(' ')[0] # regex needed??? (e.g. tabs???)
r = common.get_current_redis()
for k in r.keys('ix_public_peer:*'):
other = r.get(k.decode('utf-8')).decode('utf-8')
other = json.loads(other)
for doc in common.load_json_docs(
config_params=current_app.config['INVENTORY_PROVIDER_CONFIG'],
key_pattern='ix_public_peer:*',
num_threads=10):
other = doc['value']
if other['router'] == peer_info['router']:
result['router'].append(other['name'])
......
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='inventory-provider',
version="0.53",
version="0.54",
author='GEANT',
author_email='swd@geant.org',
description='Dashboard inventory provider',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment