We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 453f002 commit 6fa5c01Copy full SHA for 6fa5c01
synapse/handlers/vaccount_auth/auth_provider.py
@@ -48,7 +48,11 @@ class VaccountAuthProvider:
48
def __init__(self, config, account_handler: ModuleApi):
49
self.account_handler = account_handler
50
self.store: DataStore = account_handler._hs.get_datastore()
51
- self.redis = Redis()
+ self.redis = Redis(
52
+ host=config.get('REDIS_HOSTNAME'),
53
+ port=config.get('REDIS_PORT'),
54
+ password=config.get('REDIS_PASSWORD'),
55
+ )
56
57
@staticmethod
58
def get_supported_login_types():
0 commit comments