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

Finished release 0.6.

parents 0767dd00 19ead549
No related branches found
No related tags found
No related merge requests found
......@@ -5,3 +5,5 @@ __pycache__
coverage.xml
.coverage
htmlcov
docs/build
*.log
\ No newline at end of file
......@@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
## [0.5] - 2021-10-11
- POL1-463: EUMETSAT multicast dashboards
- POL1-463: pol EUMETSAT multicast counters
## [0.4] - 2021-08-24
- bugfix (POL1-492)
......
......@@ -25,7 +25,10 @@ class InterfaceCheck(sensu.AbstractCheck):
@sensu.AbstractCheck.name.getter
def name(self):
ifc_name = self.interface['name'].replace('/', '-')
# fix POL1-386 - replace : in interface name with .
# https://docs.sensu.io/sensu-go/latest/observability-pipeline/
# observe-schedule/checks/#metadata-attributes
ifc_name = self.interface['name'].replace('/', '-').replace(':', '.')
return f'ifc-{self.interface["router"]}-{ifc_name}'
@sensu.AbstractCheck.command.getter
......
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='brian-polling-manager',
version="0.5",
version="0.6",
author='GEANT',
author_email='swd@geant.org',
description='service for managing BRIAN polling checks',
......
[tox]
envlist = py36
[flake8]
exclude = venv,.tox
[testenv]
deps =
coverage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment