mirror of
https://github.com/outbackdingo/patroni.git
synced 2026-08-25 14:53:37 +00:00
Ensures that system gets rebooted before TTL runs out.
Initial version. Open questions:
Do we want to disable watchdog while we are not master?
30 lines
548 B
Python
30 lines
548 B
Python
class PatroniException(Exception):
|
|
|
|
"""Parent class for all kind of exceptions related to selected distributed configuration store"""
|
|
|
|
def __init__(self, value):
|
|
self.value = value
|
|
|
|
def __str__(self):
|
|
"""
|
|
>>> str(PatroniException('foo'))
|
|
"'foo'"
|
|
"""
|
|
return repr(self.value)
|
|
|
|
|
|
class PostgresException(PatroniException):
|
|
pass
|
|
|
|
|
|
class DCSError(PatroniException):
|
|
pass
|
|
|
|
|
|
class PostgresConnectionException(PostgresException):
|
|
pass
|
|
|
|
|
|
class WatchdogError(PatroniException):
|
|
pass
|