Add missing ping method

This commit is contained in:
Joseph Schorr 2017-10-12 16:25:21 -04:00
parent 0e0084fbbb
commit 7e63184ab4

View file

@ -81,3 +81,7 @@ class OIDCInternalAuth(object):
def service_metadata(self):
return {}
def ping(self):
""" Always assumed to be working. If the DB is broken, other checks will handle it. """
return (True, None)