summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Adds bitdeli1.3Ask Solem2013-11-151-0/+3
|
* Updates Changelog and bumps version to 1.3.3v1.3.3Ask Solem2013-11-113-2/+13
|
* Save data read in transport before raising exception.Tommie Gannert2013-11-111-23/+30
| | | | | | | | | If the exception raised is due to a timeout, we might read from the transport again. In the old code, the data was discarded, causing loss of synchronization. This ensures the data we see is preserved for next time. Conflicts: amqp/transport.py
* Bumps version to 1.3.2 and updates Changelogv1.3.2Ask Solem2013-10-293-2/+13
|
* Message.channel must be channel object, not id. Closes #24Ask Solem2013-10-292-3/+8
|
* Do not set disconnected on EGAIN/EINTRAsk Solem2013-10-252-8/+28
|
* Bumps version to 1.3.1 and updates Changelogv1.3.1Ask Solem2013-10-243-2/+12
|
* Implements Connection.connected. Closes #22Ask Solem2013-10-242-12/+35
|
* AMQPError __str__ cannot return NoneAsk Solem2013-10-141-1/+1
|
* Doc fixesv1.3.0Ask Solem2013-10-041-1/+1
|
* Bumps version to 1.3.0Ask Solem2013-10-043-5/+5
|
* FlakesAsk Solem2013-10-045-8/+16
|
* Updates ChangelogAsk Solem2013-10-041-0/+41
|
* Sets Message.channel on delivery. Closes #12Ask Solem2013-10-041-3/+5
|
* Adds confirm_publish argument to Connection (always wait for publisher confirm)Ask Solem2013-10-042-2/+19
| | | | Closes #3
* Adds Dong Weiming to AUTHORSAsk Solem2013-10-041-0/+1
|
* Fix autodoc ImportError bugdongweiming2013-10-041-1/+2
|
* AMQPError now supports using only one error message argumentAsk Solem2013-10-041-1/+3
|
* queue_declare and basic_return now gives namedtuplesAsk Solem2013-09-222-12/+28
|
* flakesAsk Solem2013-09-102-2/+2
|
* Adds Tommie Gannert to AUTHORSAsk Solem2013-09-101-0/+1
|
* Fixes patch for when FD_CLOEXEC not supported. Re #20Ask Solem2013-09-103-2/+29
|
* Set FD_CLOEXEC on opened sockets.Tommie Gannert2013-09-101-0/+2
| | | | | Since py-amqp doesn't support resuming operation from just a file descriptor, there is no use in leaving it open after execve(2).
* Bumps version to 1.2.1v1.2.1Ask Solem2013-08-163-2/+12
|
* Merge branch '1.0'Ask Solem2013-08-162-1/+26
|\ | | | | | | | | Conflicts: amqp/exceptions.py
| * Publishers must drain events to get blocked notificationsAsk Solem2013-08-161-2/+1
| |
| * flakesAsk Solem2013-08-161-1/+1
| |
| * Adds support for RabbitMQ extension connection.blockedAsk Solem2013-08-162-1/+27
| |
* | Add missing reference pagesAsk Solem2013-07-314-3/+25
| |
* | Merge branch '1.0'Ask Solem2013-07-311-0/+12
|\ \ | |/ | | | | | | | | | | | | | | Conflicts: Changelog README.rst amqp/__init__.py amqp/method_framing.py amqp/transport.py
| * Bumps version to 1.0.13 and updates Changelogv1.0.13Ask Solem2013-07-313-2/+14
| |
| * Avoid copy of small messagesAsk Solem2013-07-311-3/+8
| |
| * [Opt] No need to use Queue.Queue as channel not thread-safeAsk Solem2013-07-312-17/+18
| |
| * Increase SSL/TCP buffer sizes to 128kbAsk Solem2013-07-311-2/+2
| |
| * flakesAsk Solem2013-07-311-19/+13
| |
| * Adds Adrien Guinet to AUTHORSAsk Solem2013-07-311-0/+1
| |
| * Closes celery/#1414Adrien Guinet2013-07-311-11/+18
| | | | | | | | | | | | | | | | In SSLTransport._read, errno.ENOENT must also be catched when reading from the SSL socket. Moreover, it now uses an internal read buffer, as in TCPTransport. This is done so that the both implementation are coherent, but I don't really see the point as the OS already does buffering!
| * Fix SSL shutdown_transport functionAdrien Guinet2013-07-311-1/+1
| |
| * Cosmetics for Issue #15 (and some unrelated optimizations)Ask Solem2013-07-311-48/+45
| |
| * Fix AMQP SSL supportAdrien Guinet2013-07-311-21/+33
| | | | | | | | | | This patch changes SSLTransport so that it returns the SSL "wrapped" socket for the "sock" property, and not the original socket.
* | Avoid copy of small messagesAsk Solem2013-07-311-3/+8
| |
* | [Opt] No need to use Queue.Queue as channel not thread-safeAsk Solem2013-07-312-14/+18
| |
* | Increase SSL/TCP buffer sizes to 128kbAsk Solem2013-07-311-2/+2
| |
* | flakesAsk Solem2013-07-311-19/+13
| |
* | Adds Adrien Guinet to AUTHORSAsk Solem2013-07-311-0/+1
| |
* | Closes celery/#1414Adrien Guinet2013-07-311-11/+18
| | | | | | | | | | | | | | | | In SSLTransport._read, errno.ENOENT must also be catched when reading from the SSL socket. Moreover, it now uses an internal read buffer, as in TCPTransport. This is done so that the both implementation are coherent, but I don't really see the point as the OS already does buffering!
* | Fix SSL shutdown_transport functionAdrien Guinet2013-07-311-1/+1
| |
* | Cosmetics for Issue #15 (and some unrelated optimizations)Ask Solem2013-07-291-49/+46
| |
* | Fix AMQP SSL supportAdrien Guinet2013-07-121-21/+33
| | | | | | | | | | This patch changes SSLTransport so that it returns the SSL "wrapped" socket for the "sock" property, and not the original socket.
* | Merge branch '1.0'Ask Solem2013-06-251-0/+8
|\ \ | |/ | | | | | | | | | | Conflicts: Changelog README.rst amqp/__init__.py