summaryrefslogtreecommitdiff
path: root/python/qpid
Commit message (Collapse)AuthorAgeFilesLines
* QPID-3450: use the loop index checking if a session id is already usedRobert Gemmell2011-08-241-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1161110 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3407: restore python 2.4 compatibility to allow building CPP tree on ↵Robert Gemmell2011-08-181-1/+4
| | | | | | RHEL 5.3 git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1159248 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3407: Change python connection url to allow ipv6 literal style addresses.Andrew Stitcher2011-08-121-7/+27
| | | | | | Eg. "amqp://[::1]:5762" git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1157277 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3407: Add IPv6 connections to pythonAndrew Stitcher2011-08-121-6/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1157276 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3218: abandon any linking/unlinking if session has been detachedGordon Sim2011-05-261-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1128002 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
* only assert if type is specifiedRafael H. Schloming2011-03-172-2/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1082697 13f79535-47bb-0310-9956-ffa450edef68
* added support for address assertionRafael H. Schloming2011-03-172-1/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1082478 13f79535-47bb-0310-9956-ffa450edef68
* added tcp_nodelay connection optionRafael H. Schloming2011-03-174-13/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1082470 13f79535-47bb-0310-9956-ffa450edef68
* changed python clients durable default to FalseRafael H. Schloming2011-03-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1082290 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3130: applied patch for codec performanceRafael H. Schloming2011-03-081-6/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1079434 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3063: test correct variable in check_close()Gordon Sim2011-03-012-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1075876 13f79535-47bb-0310-9956-ffa450edef68
* Move brokertest.py from qpid/python to qpid/cpp.Alan Conway2011-01-211-699/+0
| | | | | | | | | | brokertest.py is a framework for tests using the C++ broker, so it belongs in the cpp tree rather than the python tree. It is installed to libexec/qpid/tests/ so it can be used from an installation of qpid cpp. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1061933 13f79535-47bb-0310-9956-ffa450edef68
* made address parser recognize lowercase true and falseRafael H. Schloming2011-01-132-17/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1058654 13f79535-47bb-0310-9956-ffa450edef68
* Eliminates duplicate ExchangeBind when x-bindings are present.Jonathan Robie2011-01-071-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1056473 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2956: cluster broker exits with "error deliveryRecord no update message."Alan Conway2010-11-221-3/+3
| | | | | | | | | The following sequence of events was causing a broker joining the cluster to shutdown: - a client acquires or browses a message with TTL set. - the message expires. - a new broker joins before the client has acknowledged the message. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1037763 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2874 Clustered broker crashes in assertion in cluster/ExpiryPolicy.cppAlan Conway2010-11-181-0/+14
| | | | | | | | | | | | | | - Added missing lock to ExpiryPolicy - 1-N mapping for expiry ID to mapping when receiving an update. - Regression test. A fan-out message (sent to multiple queues e.g. by fanout or topic exchange) is a single message on multiple queues with a single expiry ID. During an update however each instance is sent as a separate message so we need to allow 1-N mapping of expiry ID to message during update. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1036589 13f79535-47bb-0310-9956-ffa450edef68
* testReconnect: increase number of bytes read/written before failure.Alan Conway2010-11-151-3/+3
| | | | | | | | | Increased to 2048. The original value of 1024 was causing the test to fail with a timeout when run against a cluster with a long failover URL longer than about 400 bytes. The number of test messages was also doubled to give the same number of simulated failures in the test. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1035361 13f79535-47bb-0310-9956-ffa450edef68
* Fix error in python tests: poll() takes exactly 1 argument (2 given)Alan Conway2010-11-121-2/+6
| | | | | | | Previous fix to a different problem on python 2.4 caused this problem on python 2.6. This fix has been verified to work for both. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1034421 13f79535-47bb-0310-9956-ffa450edef68
* added address parser support for NoneRafael H. Schloming2010-11-112-3/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1033975 13f79535-47bb-0310-9956-ffa450edef68
* Fix brokertest errors like: "poll() got an unexpected keyword argument ↵Alan Conway2010-11-081-2/+2
| | | | | | '_deadstate'" git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1032636 13f79535-47bb-0310-9956-ffa450edef68
* Adjust for Windows which can't do Popen w/ close_fds. Also, when tearDown ↵Stephen D. Huston2010-11-041-1/+5
| | | | | | runs, clear stopem so previously torn down processes don't throw confusing exceptions later. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1031315 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2916: throw an exception when a data value cannot be encoded correctly ↵Kenneth Anthony Giusti2010-10-281-0/+12
| | | | | | as its type. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1028501 13f79535-47bb-0310-9956-ffa450edef68
* Fix qpid/python/qpid/brokertest.py to get cluster tests working.Alan Conway2010-10-281-21/+19
| | | | | | Fixing issues introduced by r1028156. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1028308 13f79535-47bb-0310-9956-ffa450edef68
* Ported to work on Windows; uses subprocess, not popen3. Resolves QPID-2492.Stephen D. Huston2010-10-281-12/+33
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1028156 13f79535-47bb-0310-9956-ffa450edef68
* Revert experimental cluster code, too close to 0.8 release.Alan Conway2010-10-271-15/+6
| | | | | | | | | Reverts revisions: r1023966 "Introduce broker::Cluster interface." r1024275 "Fix compile error: outline set/getCluster fucntions on Broker." r1027210 "New cluster: core framework and initial implementation of enqueue logic." git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1028055 13f79535-47bb-0310-9956-ffa450edef68
* New cluster: core framework and initial implementation of enqueue logic.Alan Conway2010-10-251-6/+15
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1027210 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 bug in management of incoming executed setRafael H. Schloming2010-10-191-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1024348 13f79535-47bb-0310-9956-ffa450edef68
* Fixed qpid-stat to skip rows when the underlying data disappears during ↵Ted Ross2010-09-221-1/+3
| | | | | | | | | execution. Removed keyword arg from "sort" to support Python 2.3. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@999918 13f79535-47bb-0310-9956-ffa450edef68
* Increase timeout waiting for brokers to be ready.Alan Conway2010-09-201-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@998965 13f79535-47bb-0310-9956-ffa450edef68
* fixed detach to not hang on session error, fixed the tests to include a ↵Rafael H. Schloming2010-09-103-2/+6
| | | | | | timeout for connection teardown git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@995884 13f79535-47bb-0310-9956-ffa450edef68
* handle request timeoutRafael H. Schloming2010-09-101-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@995815 13f79535-47bb-0310-9956-ffa450edef68
* added extra assertion to check that deletion of default exchanges doesn't workRafael H. Schloming2010-09-101-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@995803 13f79535-47bb-0310-9956-ffa450edef68
* made qpid.datatypes module use builtin UUID when availableRafael H. Schloming2010-09-102-28/+32
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@995770 13f79535-47bb-0310-9956-ffa450edef68
* fixed bool encodingRafael H. Schloming2010-09-092-0/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@995537 13f79535-47bb-0310-9956-ffa450edef68
* fixed reply-to conversionRafael H. Schloming2010-08-122-5/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@984906 13f79535-47bb-0310-9956-ffa450edef68
* Correctly parse replies containing multiple qmf messages.Kenneth Anthony Giusti2010-08-111-15/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@984424 13f79535-47bb-0310-9956-ffa450edef68
* fix error reporting for negotiation failure in sasl stubRafael H. Schloming2010-08-112-1/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@984386 13f79535-47bb-0310-9956-ffa450edef68
* default sasl service to qpiddRafael H. Schloming2010-08-111-2/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@984382 13f79535-47bb-0310-9956-ffa450edef68
* Added broker wait timeout to broker test frameworkKim van der Riet2010-08-101-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@984058 13f79535-47bb-0310-9956-ffa450edef68
* Fix test race conditions causing cluster_tests.py:management_test to hang.Alan Conway2010-08-101-13/+13
| | | | | | | | Got rid of expect_fail, ignore exceptions in the caller. Avoid concurrent calls to _cleanup, call only from from wait/poll. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@984017 13f79535-47bb-0310-9956-ffa450edef68
* fixed heartbeatingRafael H. Schloming2010-08-092-4/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@983597 13f79535-47bb-0310-9956-ffa450edef68
* Fix race conditions in brokertest.py and cluster_tests.py.Alan Conway2010-08-041-6/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@982309 13f79535-47bb-0310-9956-ffa450edef68
* Remove prefix in broker logs for brokertest.py.Alan Conway2010-08-031-1/+1
| | | | | | | Prefix is redundant and makes it more difficult to compare logs with diff. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@982003 13f79535-47bb-0310-9956-ffa450edef68
* fixed bug in flow control logic; added testsRafael H. Schloming2010-08-023-15/+57
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@981474 13f79535-47bb-0310-9956-ffa450edef68
* default ports for reconnect_urlsRafael H. Schloming2010-07-141-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@964151 13f79535-47bb-0310-9956-ffa450edef68
* fixed parsing of failover URLs; fixed driver to notice when reconnect_urls ↵Rafael H. Schloming2010-07-142-12/+22
| | | | | | is dynamically changed git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@964044 13f79535-47bb-0310-9956-ffa450edef68
* eliminate spurious error logging and reconnect attemptsRafael H. Schloming2010-07-132-2/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@963825 13f79535-47bb-0310-9956-ffa450edef68
* fixed missign import and added test case for reconnect_urlsRafael H. Schloming2010-07-133-7/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@963803 13f79535-47bb-0310-9956-ffa450edef68