tokoko commented on issue #55766:
URL: https://github.com/apache/airflow/issues/55766#issuecomment-3571200871

   pretty sure queue-based routing only works if you're using one of the older 
hybrid executors: CeleryKubernetesExecutor. You're no longer using it, so you 
should switch to specifying executors in your tasks now. Something like this 
should work:
   ```
   BashOperator(task_id="k8s_task", executor="KubernetesExecutor", 
bash_command="echo 'hello world!'")
   BashOperator(task_id="celery_task", executor="CeleryExecutor", 
bash_command="echo 'hello world!'")
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to