We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In queue.php config we can set job_name to job_handler binding. This is very useful.
queue.php
job_name to job_handler
'registry' => [ 'handlers' => [ 'app::ping' => Ping::class, 'app::user:action' => UserActionJobHandler::class, ], ],
I suggest to make similar option which sets job_name to rr_pipeline binding.
job_name to rr_pipeline
Now i has many jobs like
$queue->push('foo.*')
But what if i need to send some of them to another pipeline? Now I need to edit php code in many places.
$this->queue->push('foo.job', [...], Options::onQueue('amqp'));
We need some kind of config to set job_name to rr_pipeline binding.
for examplе
'registry' => [ 'pipeline' => [ 'app::ping' => 'roadrunner.local', 'app::user:action' => 'roadrunner.amqp', ], ],
The text was updated successfully, but these errors were encountered:
butschster
No branches or pull requests
In
queue.php
config we can setjob_name to job_handler
binding. This is very useful.I suggest to make similar option which sets
job_name to rr_pipeline
binding.Now i has many jobs like
But what if i need to send some of them to another pipeline?
Now I need to edit php code in many places.
We need some kind of config to set
job_name to rr_pipeline
binding.for examplе
The text was updated successfully, but these errors were encountered: