Add missing ping method
This commit is contained in:
parent
0e0084fbbb
commit
7e63184ab4
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue