Commit graph

9 commits

Author SHA1 Message Date
rodent
de6827ee00 1.4.6
=====

- Now keeps buffer when socket times out.

- Adds ``Connection.Transport`` attribute that can be used to specify
  a different transport implementation.
2014-11-09 20:18:33 +00:00
rodent
c8957f7fd6 Update to 1.4.5. From Changelog:
- Can now deserialize more AMQP types.

    Now handles types ``short string``, ``short short int``,
    ``short short unsigned int``, ``short int``,  ``short unsigned int``,
    ``long unsigned int``,  ``long long int``, ``long long unsigned int``
    and ``float`` which for some reason was missing, even in the original
    amqplib module.

- SSL: Workaround for Python SSL bug.

    A bug in the python socket library causes ``ssl.read/write()``
    on a closed socket to raise :exc:`AttributeError` instead of
    :exc:`IOError`.

    Fix contributed by Craig Jellick.

- ``Transport.__del_`` now handles errors occurring at late interpreter
  shutdown (Issue #36).
2014-04-17 01:53:07 +00:00
rodent
8445fc859a Update to latest release, 1.4.4. Use pypi instead of github for
MASTER_SITES. Simplify Makefile based on those changes. From Changelog:

- SSL transport accidentally disconnected after read timeout.
2014-04-07 02:09:37 +00:00
rodent
36a38a676e 1.4.3
=====

- Fixed bug where more data was requested from the socket
  than was actually needed.
2014-02-16 21:39:14 +00:00
rodent
59a18c9927 Use PKGBASE in DIST_SUBDIR instead of PKGNAME. Otherwise, we're going to
have a load of py-amqp directories rather than just throwing all the
distfiles in one. Hindsight 20/20.
2014-02-02 23:32:05 +00:00
rodent
322e55ced1 Remove PYPKGPREFIX from DIST_SUBDIR. 2014-02-02 14:07:49 +00:00
rodent
a356c8ac42 Update to latest relese, 1.4.2. Use DIST_SUBDIR, since this is a github
distfile. From Changelog:

1.4.2
=====

- Heartbeat negotiation would use heartbeat value from server even
  if heartbeat disabled (Issue #31).

1.4.1
=====

- Fixed error occurring when heartbeats disabled.

1.4.0
=====

- Heartbeat implementation improved (Issue #6).

    The new heartbeat behavior is the same approach as taken by the
    RabbitMQ java library.

    This also means that clients should preferably call the ``heartbeat_tick``
    method more frequently (like every second) instead of using the old
    ``rate`` argument (which is now ignored).

    - Heartbeat interval is negotiated with the server.
    - Some delay is allowed if the heartbeat is late.
    - Monotonic time is used to keep track of the heartbeat
      instead of relying on the caller to call the checking function
      at the right time.
- NoneType is now supported in tables and arrays.
- SSLTransport: Now handles ``ENOENT``.
2014-02-02 13:51:16 +00:00
wiz
18a46154bf Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
rodent
eab48ade38 Import py27-amqp-1.3.3 as net/py-amqp.
This is a fork of amqplib which was originally written by Barry Pederson. It is
maintained by the Celery project, and used by kombu as a pure python alternative
when librabbitmq is not available.

This library should be API compatible with librabbitmq.
2013-12-31 14:02:07 +00:00