Skip to content
Snippets Groups Projects
Commit 05645c76 authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 0.18.

parents e7843a3e 35c82861
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
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.18] - 2025-05-30
- Add 15s timeout to inventory-provider GET request, instead of default no timeout
## [0.17] - 2025-05-20 ## [0.17] - 2025-05-20
- Add 120s timeout to get-interface-stats in case it gets stuck - Add 120s timeout to get-interface-stats in case it gets stuck
......
...@@ -135,7 +135,8 @@ def load_inventory_json(api_route, base_urls, schema): ...@@ -135,7 +135,8 @@ def load_inventory_json(api_route, base_urls, schema):
rsp = requests.get( rsp = requests.get(
f'{url}/{api_route}', f'{url}/{api_route}',
headers={'Accept': 'application/json'}) headers={'Accept': 'application/json'},
timeout=15)
rsp.raise_for_status() rsp.raise_for_status()
result = rsp.json() result = rsp.json()
......
...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages ...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='brian-polling-manager', name='brian-polling-manager',
version="0.17", version="0.18",
author='GEANT', author='GEANT',
author_email='swd@geant.org', author_email='swd@geant.org',
description='service for managing BRIAN polling checks', description='service for managing BRIAN polling checks',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment