From 7e63184ab44b279002b96e23b2c499ff803d6026 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 12 Oct 2017 16:25:21 -0400 Subject: [PATCH] Add missing ping method --- data/users/oidc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data/users/oidc.py b/data/users/oidc.py index 5837a9e11..30314f19f 100644 --- a/data/users/oidc.py +++ b/data/users/oidc.py @@ -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)