Tim Black
04/18/2023, 4:03 PMdagster-celery worker start -A <http://dagster_celery.app|dagster_celery.app> -y ~/pipeline/celery_config.yaml
with a yaml file like below. The worker starts, but it is still showing the broker address as the default <amqp://guest>:**@localhost:5672/
instead of the custom one i've specified below. Any idea as to what I'm doing wrong? Thank you in advance!
execution:
config:
broker: '<pyamqp://celery:celery@localhost/celerymq/>' # Optional[str]: The URL of the Celery broker
backend: 'rpc://' # Optional[str]: The URL of the Celery results backend
execution:
celery:
broker:
..
instead of (what is shown in the docs):
execution:
config:
broker:
..
what is the recommended path for me to help fix the documentation?owen
04/18/2023, 9:47 PM