Author: jross
Date: Mon Sep 23 12:33:21 2013
New Revision: 1525570
URL: http://svn.apache.org/r1525570
Log:
QPID-5154: Further corrections to the Connection API doc; a patch from Ernie
Allen
Modified:
qpid/trunk/qpid/python/qpid/messaging/endpoints.py
Modified: qpid/trunk/qpid/python/qpid/messaging/endpoints.py
URL:
http://svn.apache.org/viewvc/qpid/trunk/qpid/python/qpid/messaging/endpoints.py?rev=1525570&r1=1525569&r2=1525570&view=diff
==============================================================================
--- qpid/trunk/qpid/python/qpid/messaging/endpoints.py (original)
+++ qpid/trunk/qpid/python/qpid/messaging/endpoints.py Mon Sep 23 12:33:21 2013
@@ -70,8 +70,8 @@ class Connection(Endpoint):
def __init__(self, url=None, **options):
"""
- Creates a connection. A newly created connection must be connected
- with the Connection.connect() method before it can be used.
+ Creates a connection. A newly created connection must be opened
+ with the Connection.open() method before it can be used.
@type url: str
@param url: [ <username> [ / <password> ] @ ] <host> [ : <port> ]
@@ -88,11 +88,6 @@ class Connection(Endpoint):
@param username: the username for authentication (overriden by url)
@type password: str
@param password: the password for authentication (overriden by url)
-
- * - sasl_min_ssf: the minimum acceptable security strength factor
- * - sasl_max_ssf: the minimum acceptable security strength factor
- * - sasl_service: the service name if needed by the SASL mechanism in use
-
@type sasl_mechanisms: str
@param sasl_mechanisms: space separated list of permitted sasl mechanisms
@type sasl_service: str
@@ -100,7 +95,7 @@ class Connection(Endpoint):
@type sasl_min_ssf: int
@param sasl_min_ssf: the minimum acceptable security strength factor
@type sasl_max_ssf: int
- @param sasl_max_ssf: the minimum acceptable security strength factor
+ @param sasl_max_ssf: the maximum acceptable security strength factor
@type reconnect: bool
@param reconnect: enable/disable automatic reconnect
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]