8000 [Messenger] Fixed typos in Amqp Connection by Nyholm · Pull Request #38555 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Messenger] Fixed typos in Amqp Connection #38555

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

Merged
merged 1 commit into from
Oct 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Messenger] Fixed typos in Connection
  • Loading branch information
Nyholm authored and fabpot committed Oct 14, 2020
commit 5dec141afb114c96c0348c775d5f1ca7684afa43
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ public function __construct(array $connectionOptions, array $exchangeOptions, ar
* * host: Hostname of the AMQP service
* * port: Port of the AMQP service
* * vhost: Virtual Host to use with the AMQP service
* * user: Username to use to connect the the AMQP service
* * password: Password to use the connect to the AMQP service
* * user: Username to use to connect the AMQP service
* * password: Password to use to connect to the AMQP service
* * read_timeout: Timeout in for income activity. Note: 0 or greater seconds. May be fractional.
* * write_timeout: Timeout in for outcome activity. Note: 0 or greater seconds. May be fractional.
* * connect_timeout: Connection timeout. Note: 0 or greater seconds. May be fractional.
Expand Down Expand Up @@ -155,8 +155,8 @@ public function __construct(array $connectionOptions, array $exchangeOptions, ar
* which means heartbeats checked only during blocking calls.
*
* TLS support (see https://www.rabbitmq.com/ssl.html for details):
* * cacert: Path to the CA cert file in PEM format..
* * cert: Path to the client certificate in PEM foramt.
* * cacert: Path to the CA cert file in PEM format.
* * cert: Path to the client certificate in PEM format.
* * key: Path to the client key in PEM format.
* * verify: Enable or disable peer verification. If peer verification is enabled then the common name in the
* server certificate must match the server name. Peer verification is enabled by default.
Expand Down
0