Skip to content

Commit

Permalink
fix non ssl case
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberjunk committed Sep 25, 2023
1 parent 8e46b06 commit 4770455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flower/utils/broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class RedisSentinel(RedisBase):
def __init__(self, broker_url, *args, **kwargs):
super().__init__(broker_url, *args, **kwargs)
broker_options = kwargs.get('broker_options', {})
broker_use_ssl = kwargs.get('broker_use_ssl', {})
broker_use_ssl = kwargs.get('broker_use_ssl', None)
self.host = self.host or 'localhost'
self.port = self.port or 26379
self.vhost = self._prepare_virtual_host(self.vhost)
Expand Down

0 comments on commit 4770455

Please sign in to comment.