forked from pool/python-kombu
- Update to 2.5.8:
- Now depends on amqp 1.0.10 which fixes a Python 3 compatibility error. - Redis: Fixed a possible race condition (Issue #171). - Redis: Ack emulation/visibility_timeout can now be disabled using a transport option. Ack emulation adds quite a lot of overhead to ensure data is safe even in the event of an unclean shutdown. If data loss do not worry you there is now an `ack_emulation` transport option you can use to disable it: Connection('redis://', transport_options={'ack_emulation': False}) - SQS: Fixed boto v2.7 compatibility (Issue #207). - Exchange: Should not try to re-declare default exchange ("") (Issue #209). - SQS: Long polling is now disabled by default as it was not implemented correctly, resulting in long delays between receiving messages (Issue #202). - Fixed Python 2.6 incompatibility depending on exc.errno being available. Fix contributed by Ephemera. - Update to 2.5.8: - Now depends on amqp 1.0.10 which fixes a Python 3 compatibility error. - Redis: Fixed a possible race condition (Issue #171). - Redis: Ack emulation/visibility_timeout can now be disabled using a transport option. Ack emulation adds quite a lot of overhead to ensure data is safe even in the event of an unclean shutdown. If data loss do not worry you there is now an `ack_emulation` transport option you can use OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=74
This commit is contained in:
parent
2d7b88b505
commit
6acca9d41f
@ -4,17 +4,18 @@ Index: kombu.egg-info/requires.txt
|
||||
+++ kombu.egg-info/requires.txt
|
||||
@@ -1,2 +1,2 @@
|
||||
anyjson>=0.3.3
|
||||
-amqp>=1.0.9,<1.1.0
|
||||
-amqp>=1.0.10,<1.1.0
|
||||
\ No newline at end of file
|
||||
+amqp>=1.0.10
|
||||
\ No newline at end of file
|
||||
+amqp>=1.0.9
|
||||
Index: requirements/default.txt
|
||||
===================================================================
|
||||
--- requirements/default.txt.orig
|
||||
+++ requirements/default.txt
|
||||
@@ -1,2 +1,2 @@
|
||||
anyjson>=0.3.3
|
||||
-amqp>=1.0.9,<1.1.0
|
||||
+amqp>=1.0.9
|
||||
-amqp>=1.0.10,<1.1.0
|
||||
+amqp>=1.0.10
|
||||
Index: setup.cfg
|
||||
===================================================================
|
||||
--- setup.cfg.orig
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:32bcfabc02366738101861f06e737106dea8d2ea784a588d7a9e1fbd940b7a78
|
||||
size 301904
|
3
kombu-2.5.8.tar.gz
Normal file
3
kombu-2.5.8.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:92a4b6129e7a08f24a1b50f8853e3cad321b564a496e8ecc0c7f2bae3f3b71e4
|
||||
size 302410
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 21 19:57:35 UTC 2013 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 2.5.8:
|
||||
- Now depends on amqp 1.0.10 which fixes a Python 3 compatibility
|
||||
error.
|
||||
- Redis: Fixed a possible race condition (Issue #171).
|
||||
- Redis: Ack emulation/visibility_timeout can now be disabled
|
||||
using a transport option.
|
||||
Ack emulation adds quite a lot of overhead to ensure data is safe
|
||||
even in the event of an unclean shutdown. If data loss do not worry
|
||||
you there is now an `ack_emulation` transport option you can use
|
||||
to disable it:
|
||||
Connection('redis://', transport_options={'ack_emulation': False})
|
||||
- SQS: Fixed boto v2.7 compatibility (Issue #207).
|
||||
- Exchange: Should not try to re-declare default exchange ("")
|
||||
(Issue #209).
|
||||
- SQS: Long polling is now disabled by default as it was not
|
||||
implemented correctly, resulting in long delays between receiving
|
||||
messages (Issue #202).
|
||||
- Fixed Python 2.6 incompatibility depending on exc.errno
|
||||
being available.
|
||||
Fix contributed by Ephemera.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 8 13:10:29 UTC 2013 - alexandre@exatati.com.br
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: python-kombu
|
||||
Version: 2.5.7
|
||||
Version: 2.5.8
|
||||
Release: 0
|
||||
Summary: AMQP Messaging Framework for Python
|
||||
License: BSD-3-Clause
|
||||
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 21 19:59:14 UTC 2013 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 2.5.8:
|
||||
- Now depends on amqp 1.0.10 which fixes a Python 3 compatibility
|
||||
error.
|
||||
- Redis: Fixed a possible race condition (Issue #171).
|
||||
- Redis: Ack emulation/visibility_timeout can now be disabled
|
||||
using a transport option.
|
||||
Ack emulation adds quite a lot of overhead to ensure data is safe
|
||||
even in the event of an unclean shutdown. If data loss do not worry
|
||||
you there is now an `ack_emulation` transport option you can use
|
||||
to disable it:
|
||||
Connection('redis://', transport_options={'ack_emulation': False})
|
||||
- SQS: Fixed boto v2.7 compatibility (Issue #207).
|
||||
- Exchange: Should not try to re-declare default exchange ("")
|
||||
(Issue #209).
|
||||
- SQS: Long polling is now disabled by default as it was not
|
||||
implemented correctly, resulting in long delays between receiving
|
||||
messages (Issue #202).
|
||||
- Fixed Python 2.6 incompatibility depending on exc.errno
|
||||
being available.
|
||||
Fix contributed by Ephemera.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 8 13:10:29 UTC 2013 - alexandre@exatati.com.br
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: python3-kombu
|
||||
Version: 2.5.7
|
||||
Version: 2.5.8
|
||||
Release: 0
|
||||
Summary: AMQP Messaging Framework for Python
|
||||
License: BSD-2-Clause
|
||||
|
Loading…
Reference in New Issue
Block a user