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

Finished release 0.47.

parents 9400c5ff 654b39a6
Branches
Tags 0.47
No related merge requests found
...@@ -2,8 +2,11 @@ ...@@ -2,8 +2,11 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.47] - 2020-06-06
- bugfix when catching junos rpc exceptions
## [0.46] - 2020-06-05 ## [0.46] - 2020-06-05
- optimization for redis network latency - mitigation for redis network latency
## [0.45] - 2020-06-05 ## [0.45] - 2020-06-05
- DBOARD3-242: use cached netconf/snmp data when router is unavailable - DBOARD3-242: use cached netconf/snmp data when router is unavailable
......
...@@ -115,7 +115,7 @@ def _rpc(hostname, ssh): ...@@ -115,7 +115,7 @@ def _rpc(hostname, ssh):
ssh_private_key_file=ssh['private-key']) ssh_private_key_file=ssh['private-key'])
try: try:
dev.open() dev.open()
except [EzErrors.ConnectError, EzErrors.RpcError] as e: except (EzErrors.ConnectError, EzErrors.RpcError) as e:
raise ConnectionError(str(e)) raise ConnectionError(str(e))
return dev.rpc return dev.rpc
......
...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages ...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='inventory-provider', name='inventory-provider',
version="0.46", version="0.47",
author='GEANT', author='GEANT',
author_email='swd@geant.org', author_email='swd@geant.org',
description='Dashboard inventory provider', description='Dashboard inventory provider',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment