mirror of https://github.com/zulip/zulip.git
check_send_receive_time: Move "states" to inside where they are used.
This commit is contained in:
parent
04e21044b9
commit
8bdf1e4a10
|
@ -45,15 +45,15 @@ parser.add_argument("--insecure", action="store_true")
|
|||
|
||||
options = parser.parse_args()
|
||||
|
||||
states = {
|
||||
"OK": 0,
|
||||
"WARNING": 1,
|
||||
"CRITICAL": 2,
|
||||
"UNKNOWN": 3,
|
||||
}
|
||||
|
||||
|
||||
def report(state: str, timestamp: Any = None, msg: Optional[str] = None) -> NoReturn:
|
||||
states = {
|
||||
"OK": 0,
|
||||
"WARNING": 1,
|
||||
"CRITICAL": 2,
|
||||
"UNKNOWN": 3,
|
||||
}
|
||||
|
||||
now = int(time.time())
|
||||
if msg is None:
|
||||
msg = f"send time was {timestamp}"
|
||||
|
|
Loading…
Reference in New Issue