Skip to content

Commit fb888cd

Browse files
author
Bilal Al
committed
removed username from sentinel async
1 parent 1b7eeaa commit fb888cd

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

splitio/storage/adapters/redis.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,6 @@ async def _build_sentinel_client_async(config): # pylint: disable=too-many-loca
908908
raise SentinelConfigurationException('redisMasterService must be specified.')
909909

910910
database = config.get('redisDb', 0)
911-
username = config.get('redisUsername', None)
912911
password = config.get('redisPassword', None)
913912
socket_timeout = config.get('redisSocketTimeout', None)
914913
socket_connect_timeout = config.get('redisSocketConnectTimeout', None)
@@ -926,7 +925,6 @@ async def _build_sentinel_client_async(config): # pylint: disable=too-many-loca
926925
sentinel = SentinelAsync(
927926
sentinels,
928927
db=database,
929-
username=username,
930928
password=password,
931929
encoding=encoding,
932930
encoding_errors=encoding_errors,

0 commit comments

Comments
 (0)