Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #165 from greg0ire/fix_documentation
Browse files Browse the repository at this point in the history
quote strings with special characters
  • Loading branch information
OskarStark committed Feb 11, 2016
2 parents 4bd8ce0 + 3356d9d commit 2c0c7de
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Resources/doc/reference/monitoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ If you need to change the default URL, you can configure it by setting the ``con
rabbitmq:
exchange: router
connection:
host: %rabbitmq_host%
user: %rabbitmq_user%
pass: %rabbitmq_pass%
port: %rabbitmq_port%
vhost: %rabbitmq_vhost%
host: "%rabbitmq_host%"
user: "%rabbitmq_user%"
pass: "%rabbitmq_pass%"
port: "%rabbitmq_port%"
vhost: "%rabbitmq_vhost%"
console_url : http://some.other.host:55999/api
10 changes: 5 additions & 5 deletions Resources/doc/reference/multiple_queues.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ To enable multiple queues, simply define a `queues` node in your configuration:
rabbitmq:
exchange: router
connection:
host: %rabbitmq_host%
user: %rabbitmq_user%
pass: %rabbitmq_pass%
port: %rabbitmq_port%
vhost: %rabbitmq_vhost%
host: "%rabbitmq_host%"
user: "%rabbitmq_user%"
pass: "%rabbitmq_pass%"
port: "%rabbitmq_port%"
vhost: "%rabbitmq_vhost%"
This will define 2 different queues: `transcoder` and `catchall` and where the `transcoder` queue is bound to a routing key:
Expand Down
2 changes: 1 addition & 1 deletion Resources/doc/reference/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ message is receive or created.
class: Sonata\NotificationBundle\Consumer\LoggerConsumer
tags:
- { name: sonata.notification.consumer, type: logger }
arguments: [ @logger ]
arguments: [ "@logger" ]
Now you can use the created service to send a message to the symfony logger.
Expand Down

0 comments on commit 2c0c7de

Please sign in to comment.