-
Notifications
You must be signed in to change notification settings - Fork 440
New issue
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
[symfony] Async commands #403
Conversation
@makasim Hi, any word on this being merged? We would love to use this :) |
@wesleylancel It needs some testing, not sure I can find time to finish this in near future. |
Has enqueue/async-command been removed? The link in the first post produces a 404... |
Same here! See schmittjoh/JMSJobQueueBundle#208 btw, where some users are not satisfied with JMSJobQueueBundle right now, and maybe switch to enqueue-dev when a async function is available. |
I've created a repo you can require it in your composer json like this {
"require": {
"enqueue/async-command": "dev-pr-250"
}
} That way you can test it. |
Thanks! Is there something like an example for a minimal setup/configuration for this? I'm new to enqueue, and just want to check wether or not to replace JmsJobQueue by this. |
and in PR's description. |
@makasim Hmm there is no *Bundle class, am I missing something? |
@@ -150,6 +151,15 @@ public function load(array $configs, ContainerBuilder $container) | |||
]], $container); | |||
} | |||
|
|||
if ($config['async_commands']['enabled']) { | |||
if (false == class_exists(AsyncCommandExtension::class)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't the class constant lookup fail when the class is not available?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it wont
Ok, got it. Had to manually edit the Configuration and the EnqueueExtension. Runs fine now, will report. |
Maybe a small improvement we did:
|
Any plan to merge this? |
@hslavich today (: |
Async commands
The enqueue/async-command package adds ability to run Symfony command async with ability to get output.
Installation
Configuration
Usage
optionally you can get a command execution result:
back to index