add /live endpoint

This commit is contained in:
Son NK 2020-12-02 16:34:28 +01:00
parent b7fdbe7721
commit 450b101e6e

View file

@ -7,6 +7,11 @@ def git_sha1():
return SHA1
@monitor_bp.route("/live")
def live():
return "live"
@monitor_bp.route("/exception")
def test_exception():
raise Exception("to make sure sentry works")