summaryrefslogtreecommitdiff
path: root/python/qpid/messaging/endpoints.py
Commit message (Collapse)AuthorAgeFilesLines
* Update from trunk r1375509 through r1450773asyncstoreKim van der Riet2013-02-281-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1451244 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3603: Merge new HA foundations.Alan Conway2012-02-171-0/+1
| | | | | | | Merged from qpid-3603-7. This is basic support for the new HA approach. For information & limitations see qpid/cpp/design_docs/new-ha-design.txt. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1245587 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3175: removed the sasl_mechanisms defaultRafael H. Schloming2012-02-021-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1239795 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3175: applied patch with a default sasl_mechanisms of ANONYMOUSRafael H. Schloming2012-01-301-1/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1238012 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3232: Call _grant() & wakeup() after returned message has been countedGordon Sim2011-04-281-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1097539 13f79535-47bb-0310-9956-ffa450edef68
* added tcp_nodelay connection optionRafael H. Schloming2011-03-171-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1082470 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3063: test correct variable in check_close()Gordon Sim2011-03-011-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1075876 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2910: Small fix for python timeout testsAndrew Donald Kennedy2010-10-241-2/+4
| | | | | | Patch submitted by Sorin S <ssuciu@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1026917 13f79535-47bb-0310-9956-ffa450edef68
* fixed detach to not hang on session error, fixed the tests to include a ↵Rafael H. Schloming2010-09-101-0/+1
| | | | | | timeout for connection teardown git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@995884 13f79535-47bb-0310-9956-ffa450edef68
* fixed bug in flow control logic; added testsRafael H. Schloming2010-08-021-3/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@981474 13f79535-47bb-0310-9956-ffa450edef68
* added accessor for auth_usernameRafael H. Schloming2010-06-301-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@959326 13f79535-47bb-0310-9956-ffa450edef68
* fixed concurrent closeRafael H. Schloming2010-06-301-41/+82
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@959289 13f79535-47bb-0310-9956-ffa450edef68
* fix mangling for addresses that are NoneRafael H. Schloming2010-06-281-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@958547 13f79535-47bb-0310-9956-ffa450edef68
* add uuid prefix to addresses beginning with hash(#)Rafael H. Schloming2010-06-251-0/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@958083 13f79535-47bb-0310-9956-ffa450edef68
* added optional timeouts to {connection,session,sender,receiver}.close() as ↵Rafael H. Schloming2010-06-251-21/+36
| | | | | | well as connection.detach() and {session,sender}.sync() git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@958037 13f79535-47bb-0310-9956-ffa450edef68
* don't always set the sync bit on sendRafael H. Schloming2010-06-161-4/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@955414 13f79535-47bb-0310-9956-ffa450edef68
* performance tweaks for receive: added configurable threshold for issuing ↵Rafael H. Schloming2010-06-161-2/+5
| | | | | | credit; don't disable byte credit more than necessary; avoided n-squared loop for generating acks git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@955296 13f79535-47bb-0310-9956-ffa450edef68
* Don't use guest/guest default username/password, use None instead (this ↵Gordon Sim2010-06-011-2/+2
| | | | | | allows sasl implementation to infer the correct choice while retaining the ability to override it should that be desired) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@949971 13f79535-47bb-0310-9956-ffa450edef68
* added get_errorRafael H. Schloming2010-04-141-0/+24
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@933920 13f79535-47bb-0310-9956-ffa450edef68
* added more complete exception handling/hierarchyRafael H. Schloming2010-04-131-26/+25
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@933560 13f79535-47bb-0310-9956-ffa450edef68
* Sender.pending() -> Sender.unsettled(); Receiver.pending() -> ↵Rafael H. Schloming2010-04-091-3/+17
| | | | | | Receiver.available(); added Sender.available() and Receiver.unsettled() git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932415 13f79535-47bb-0310-9956-ffa450edef68
* cleanup waiter pipes on errorRafael H. Schloming2010-04-091-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932362 13f79535-47bb-0310-9956-ffa450edef68
* Changes to connection lifecycle methods and Connection parameters:Rafael H. Schloming2010-04-091-41/+108
| | | | | | | | | | | - Connection.open -> Connection.establish - Connection.connect() split into Connection.open(), Connection.attach() - Connection.disconnect() -> Connection.detach() - reconnect_hosts -> reconnect_urls - transport now takes tcp, ssl, and tcp+tls git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932352 13f79535-47bb-0310-9956-ffa450edef68
* fixed resource leak when close throws an errorRafael H. Schloming2010-04-061-4/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@931286 13f79535-47bb-0310-9956-ffa450edef68
* added option to disable reconnect logging; fixed reconnect test to not loop ↵Rafael H. Schloming2010-04-011-1/+1
| | | | | | forever if no broker is running; backups -> reconnect_hosts git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@930105 13f79535-47bb-0310-9956-ffa450edef68
* updated reconnect option names to match C++ APIRafael H. Schloming2010-04-011-1/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@930084 13f79535-47bb-0310-9956-ffa450edef68
* added SSL support to APIRafael H. Schloming2010-03-311-1/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929717 13f79535-47bb-0310-9956-ffa450edef68
* updated address docsRafael H. Schloming2010-03-301-14/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929155 13f79535-47bb-0310-9956-ffa450edef68
* fixed resource leakage on repeated connection open/closeRafael H. Schloming2010-03-231-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@926766 13f79535-47bb-0310-9956-ffa450edef68
* Several updates to address options including:Rafael H. Schloming2010-03-231-14/+27
| | | | | | | | | | - renamed node-properties to node - added link to permit durable links (with names) - split x-properties into x-declare, x-subscribe, and x-bindings - removed automatic passthrough of unrecognized options (as this was confusing) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@926604 13f79535-47bb-0310-9956-ffa450edef68
* added support for reject/releaseRafael H. Schloming2010-03-111-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@921638 13f79535-47bb-0310-9956-ffa450edef68
* split engine into a separate classRafael H. Schloming2010-02-261-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@916499 13f79535-47bb-0310-9956-ffa450edef68
* moved Pattern into driverRafael H. Schloming2010-02-191-15/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@911807 13f79535-47bb-0310-9956-ffa450edef68
* split messaging.py into multiple files and made qpid.messaging a packageRafael H. Schloming2010-02-181-0/+832
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@911550 13f79535-47bb-0310-9956-ffa450edef68