@@ -25,7 +25,7 @@ method::
25
25
26
26
>>> connection.connect()
27
27
28
- You can also check wether the connection is connected::
28
+ You can also check whether the connection is connected::
29
29
30
30
>>> connection.connected()
31
31
True
@@ -37,7 +37,7 @@ Connections must always be closed after use::
37
37
But best practice is to release the connection instead,
38
38
this will release the resource if the connection is associated
39
39
with a connection pool, or close the connection if not,
40
- and makes it easier to transist to connection pools later::
40
+ and makes it easier to do the transition to connection pools later::
41
41
42
42
>>> connection.release()
43
43
@@ -83,7 +83,7 @@ The query part of the URL can also be used to set options, e.g.::
83
83
See :ref: `connection-options ` for a list of supported options.
84
84
85
85
A connection without options will use the default connection settings,
86
- which is using the localhost host, default port, username `guest `,
86
+ which is using the localhost host, default port, user name `guest `,
87
87
password `guest ` and virtual host "/". A connection without arguments
88
88
is the same as::
89
89
@@ -103,8 +103,8 @@ Keyword arguments
103
103
The :class: `BrokerConnection ` class supports additional
104
104
keyword arguments, these are:
105
105
106
- :hostname: Default hostname if not provided in the URL.
107
- :userid: Default username if not provided in the URL.
106
+ :hostname: Default host name if not provided in the URL.
107
+ :userid: Default user name if not provided in the URL.
108
108
:password: Default password if not provided in the URL.
109
109
:virtual_host: Default virtual host if not provided in the URL.
110
110
:port: Default port if not provided in the URL.
@@ -113,15 +113,15 @@ keyword arguments, these are:
113
113
``kombu.transport.pyamqplib.Transport ``), or one of the aliases:
114
114
``amqplib ``, ``pika ``, ``redis ``, ``memory ``, and so on.
115
115
116
- :ssl: Use ssl to connect to the server. Default is ``False ``.
116
+ :ssl: Use SSL to connect to the server. Default is ``False ``.
117
117
Only supported by the amqp transport.
118
118
:insist: Insist on connecting to a server.
119
119
In a configuration with multiple load-sharing servers, the insist
120
120
option tells the server that the client is insisting on a connection
121
121
to the specified server. Default is ``False ``.
122
122
Only supported by the amqp and pika transports, and not by AMQP 0-9-1.
123
123
:connect_timeout: Timeout in seconds for connecting to the
124
- server. May not be suported by the specified transport.
124
+ server. May not be supported by the specified transport.
125
125
:transport_options: A dict of additional connection arguments to
126
126
pass to alternate kombu channel implementations. Consult the transport
127
127
documentation for available options.
0 commit comments