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

Finished release 0.2.

parents 860a1ef4 5675c51a
No related branches found
No related tags found
No related merge requests found
...@@ -2,5 +2,8 @@ ...@@ -2,5 +2,8 @@
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.2] - 2021-06-10
- ensure checks are published
## [0.1] - 2021-06-01 ## [0.1] - 2021-06-01
- initial release - initial release
...@@ -43,11 +43,14 @@ def _make_check(check_params, interface): ...@@ -43,11 +43,14 @@ def _make_check(check_params, interface):
'metadata': { 'metadata': {
'name': _check_name(interface), 'name': _check_name(interface),
'namespace': check_params['namespace'] 'namespace': check_params['namespace']
} },
'publish': True
} }
def _checks_match(a, b) -> bool: def _checks_match(a, b) -> bool:
if a['publish'] != b['publish']:
return False
if a['command'] != b['command']: if a['command'] != b['command']:
return False return False
if a['interval'] != b['interval']: if a['interval'] != b['interval']:
......
...@@ -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.1", version="0.2",
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