Just small fixes. (0.23.1)

This commit is contained in:
Johannes Findeisen 2023-08-21 00:27:35 +02:00
commit 9500b91c2d
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ from linspector.environment import Environment
from linspector.linspector import Linspector
from linspector.monitors import Monitors
__version__ = '0.23.0'
__version__ = '0.23.1'
__author__ = 'Johannes Findeisen <you@hanez.org>'

View file

@ -28,7 +28,7 @@ class IsConnectedService(Service):
' host=' + monitor.get_host() +
' service=' + service +
' error=' + str(err))
return False
return {"status": 'ERROR', "message": str(err)}
self._log.info('identifier=' + identifier +
' host=' + monitor.get_host() +