Skip to content

Commit

Permalink
Update tasks.py
Browse files Browse the repository at this point in the history
Fix another AMQP reference.
  • Loading branch information
gersh authored Aug 1, 2024
1 parent 0986f20 commit b0bbc18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flower/api/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ async def get(self):
app = self.application

http_api = None
if app.transport == 'amqp' and app.options.broker_api:
if app.transport in ('amqp','amqps') and app.options.broker_api:
http_api = app.options.broker_api

broker = Broker(app.capp.connection().as_uri(include_password=True),
Expand Down

0 comments on commit b0bbc18

Please sign in to comment.