- Update to 1.1.3:
* Redis: Consuming from multiple connections now works with Eventlet. * Redis: Can now perform channel operations while the channel is in BRPOP/LISTEN mode (Issue #35). Also the async BRPOP now times out after 1 second, this means that cancelling consuming from a queue/starting consuming from additional queues has a latency of up to one second (BRPOP does not support subsecond timeouts). * Virtual: Allow channel objects to be closed multiple times without error. * amqplib: AttributeError has been added to the list of known connection related errors (Connection.connection_errors). * amqplib: Now converts SSLError timeout errors to socket.timeout (http://bugs.python.org/issue10272) * Ensures cyclic references are destroyed when the connection is closed. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=9
This commit is contained in:
parent
35e2f2dfc8
commit
23a97cf779
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dee505ce74df821ca3e5952146c9af9b09b95a73382ce4877383499d61d026f3
|
|
||||||
size 204046
|
|
3
kombu-1.1.3.tar.bz2
Normal file
3
kombu-1.1.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d18b46471d00d552c53ee840b3d6b19bbace9405890a75dcf60039f07de4ef64
|
||||||
|
size 204709
|
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 21 18:07:47 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 1.1.3:
|
||||||
|
* Redis: Consuming from multiple connections now works with
|
||||||
|
Eventlet.
|
||||||
|
* Redis: Can now perform channel operations while the channel
|
||||||
|
is in BRPOP/LISTEN mode (Issue #35).
|
||||||
|
Also the async BRPOP now times out after 1 second, this
|
||||||
|
means that cancelling consuming from a queue/starting
|
||||||
|
consuming from additional queues has a latency of up to
|
||||||
|
one second (BRPOP does not support subsecond timeouts).
|
||||||
|
* Virtual: Allow channel objects to be closed multiple times
|
||||||
|
without error.
|
||||||
|
* amqplib: AttributeError has been added to the list of known
|
||||||
|
connection related errors (Connection.connection_errors).
|
||||||
|
* amqplib: Now converts SSLError timeout errors to
|
||||||
|
socket.timeout (http://bugs.python.org/issue10272)
|
||||||
|
* Ensures cyclic references are destroyed when the connection
|
||||||
|
is closed.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 6 17:43:07 UTC 2011 - alexandre@exatati.com.br
|
Wed Apr 6 17:43:07 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@ -11,19 +11,18 @@
|
|||||||
# case the license is the MIT License). An "Open Source License" is a
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
#
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
|
|
||||||
%define mod_name kombu
|
%define mod_name kombu
|
||||||
|
|
||||||
Name: python-%{mod_name}
|
Name: python-%{mod_name}
|
||||||
Version: 1.1.2
|
Version: 1.1.3
|
||||||
Release: 1
|
Release: 0
|
||||||
License: BSD License
|
License: BSD License
|
||||||
Summary: AMQP Messaging Framework for Python
|
Summary: AMQP Messaging Framework for Python
|
||||||
Url: http://github.com/ask/kombu/
|
Url: http://github.com/ask/kombu/
|
||||||
|
Loading…
Reference in New Issue
Block a user