From d1699e75b72f296c8aae522c8ee055da43d8daf5 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 6 Jul 2016 16:17:02 -0400 Subject: [PATCH] Add missing constructor argument --- health/healthcheck.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/health/healthcheck.py b/health/healthcheck.py index 87a5845ae..50040d97f 100644 --- a/health/healthcheck.py +++ b/health/healthcheck.py @@ -82,9 +82,9 @@ class LocalHealthCheck(HealthCheck): class RDSAwareHealthCheck(HealthCheck): - def __init__(self, app, config_provider, access_key, secret_key, db_instance='quay', - region='us-east-1'): - super(RDSAwareHealthCheck, self).__init__(app, config_provider, ['redis']) + def __init__(self, app, config_provider, instance_keys, access_key, secret_key, + db_instance='quay', region='us-east-1'): + super(RDSAwareHealthCheck, self).__init__(app, config_provider, instance_keys, ['redis']) self.access_key = access_key self.secret_key = secret_key self.db_instance = db_instance