We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b7eeaa commit fb888cdCopy full SHA for fb888cd
1 file changed
splitio/storage/adapters/redis.py
@@ -908,7 +908,6 @@ async def _build_sentinel_client_async(config): # pylint: disable=too-many-loca
908
raise SentinelConfigurationException('redisMasterService must be specified.')
909
910
database = config.get('redisDb', 0)
911
- username = config.get('redisUsername', None)
912
password = config.get('redisPassword', None)
913
socket_timeout = config.get('redisSocketTimeout', None)
914
socket_connect_timeout = config.get('redisSocketConnectTimeout', None)
@@ -926,7 +925,6 @@ async def _build_sentinel_client_async(config): # pylint: disable=too-many-loca
926
925
sentinel = SentinelAsync(
927
sentinels,
928
db=database,
929
- username=username,
930
password=password,
931
encoding=encoding,
932
encoding_errors=encoding_errors,
0 commit comments