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 3387a15 commit aad8718Copy full SHA for aad8718
sdk/python/feast/infra/online_stores/redis.py
@@ -187,13 +187,9 @@ def _get_client(self, online_store_config: RedisOnlineStoreConfig):
187
sentinel_hosts = []
188
189
for item in startup_nodes:
190
- sentinel_hosts.append((item['host'], int(item['port'])))
+ sentinel_hosts.append((item["host"], int(item["port"])))
191
192
- sentinel = Sentinel(
193
- sentinel_hosts,
194
- **kwargs
195
- )
196
-
+ sentinel = Sentinel(sentinel_hosts, **kwargs)
197
master = sentinel.master_for(online_store_config.sentinel_master)
198
self._client = master
199
else:
0 commit comments