From b772a4576de29b94d6cb4a5744c7c18196a6b7de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C3=85rhof?= Date: Sun, 15 Oct 2017 07:54:22 +0200 Subject: [PATCH] Missing client configuration in the documentation If `client: ~` is not added you will get an error `The service "fos_elastica.provider.app.channel" has a dependency on a non-existent service "enqueue.client.producer".` because the client services are not loaded until you add `client: ~` --- docs/elastica-bundle/populate-command-optimization.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/elastica-bundle/populate-command-optimization.md b/docs/elastica-bundle/populate-command-optimization.md index 8c5cab739..ccaa355b5 100644 --- a/docs/elastica-bundle/populate-command-optimization.md +++ b/docs/elastica-bundle/populate-command-optimization.md @@ -62,6 +62,7 @@ Here's an example of what your EnqueueBundle configuration may look like: enqueue: transport: default: 'file://%kernel.root_dir%/../var/messages' +    client: ~ ``` Sure you can configure other transports like: [rabbitmq, amqp, stomp and so on](https://github.com/php-enqueue/enqueue-dev/blob/master/docs/bundle/config_reference.md)