- Update to 1.1.6:

* Redis: Fixes issue introduced in 1.1.4, where a redis connection
    failure could leave consumer hanging forever.
  * SQS: Now supports fanout messaging by using SimpleDB to store routing
    tables.
    This can be disabled by setting the `supports_fanout` transport option:
        >>> BrokerConnection(transport="SQS",
        ...                  transport_options={"supports_fanout": False})
  * SQS: Now properly deletes a message when a message is acked.
  * SQS: Can now set the Amazon AWS region, by using the ``region``
    transport option.
  * amqplib: Now uses `localhost` as default hostname instead of raising an
    error.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=11
This commit is contained in:
Alexandre Rogoski 2011-06-13 22:53:01 +00:00 committed by Git OBS Bridge
parent 89880ec3e1
commit f674b3f66d
4 changed files with 23 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2ca2dbf5b836c723bbdd14e25d35985a584d2a7eed7cddcadfc270ca760a2748
size 206169

3
kombu-1.1.6.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09885c2818bc4409518ed9c0b7b33bd9cb3f97d0aee156a697a1a2cf09d961a0
size 207710

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Jun 13 22:42:00 UTC 2011 - alexandre@exatati.com.br
- Update to 1.1.6:
* Redis: Fixes issue introduced in 1.1.4, where a redis connection
failure could leave consumer hanging forever.
* SQS: Now supports fanout messaging by using SimpleDB to store routing
tables.
This can be disabled by setting the `supports_fanout` transport option:
>>> BrokerConnection(transport="SQS",
... transport_options={"supports_fanout": False})
* SQS: Now properly deletes a message when a message is acked.
* SQS: Can now set the Amazon AWS region, by using the ``region``
transport option.
* amqplib: Now uses `localhost` as default hostname instead of raising an
error.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 7 22:57:44 UTC 2011 - alexandre@exatati.com.br Tue Jun 7 22:57:44 UTC 2011 - alexandre@exatati.com.br

View File

@ -21,7 +21,7 @@
%define mod_name kombu %define mod_name kombu
Name: python-%{mod_name} Name: python-%{mod_name}
Version: 1.1.5 Version: 1.1.6
Release: 0 Release: 0
License: BSD License License: BSD License
Summary: AMQP Messaging Framework for Python Summary: AMQP Messaging Framework for Python