Skip to content

Commit

Permalink
fix missing broker at flower
Browse files Browse the repository at this point in the history
  • Loading branch information
Friskes committed Jul 5, 2024
1 parent 7dcfdfa commit 777453f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/celery_starter/management/commands/runcelery.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def run_celery(self) -> None:

if not self.options['flower']:
subprocess.Popen(
shlex.split(f'celery flower -A {self.celery_app} --url_prefix={self.flower_url_prefix}'),
shlex.split(f'celery --broker=redis://localhost:6379// flower -A {self.celery_app} --url_prefix={self.flower_url_prefix}'), # noqa: E501
stdin=subprocess.PIPE,
stderr=subprocess.STDOUT,
stdout=subprocess.PIPE,
Expand Down

0 comments on commit 777453f

Please sign in to comment.