908 Commits

Author SHA1 Message Date
Davanum Srinivas
6abfdd51da Remove support for Python 3.3
Change-Id: Ifca70a5e139090ae5fd76bd524738bb8c138fd0f
2015-05-10 19:18:41 -04:00
OpenStack Proposal Bot
ef58534877 Updated from global requirements
Change-Id: I8dd4af49c069123bac52fcf312a1ae6e20728e6f
2015-05-07 23:36:42 +00:00
OpenStack Proposal Bot
b46e52f536 Updated from global requirements
Change-Id: I3d4e56a47aec37fd69021281aa895b5d3f05ab8c
2015-05-06 16:08:56 +00:00
Mehdi Abaakouk
6c91066c72 rabbit/qpid: simplify the consumer loop
The consumer loop is over engineered, it returns unused return,
iterconsume creates an iterator directly consumed by 'consume' without
special handling, and in some case kombu error callback are called when
the iterator is stopped and log useless error.

And in reality the consumer is always called when limit=1.

This change simplifies that, by removing the loop and removes all
returns stuffs.

Closes bug: #1450336

Change-Id: Ia2cb52c8577b29e74d4d2b0ed0b535102f2d55c7
2015-05-05 08:26:00 +02:00
OpenStack Proposal Bot
5b9fb69802 Updated from global requirements
Change-Id: I6dc8b32ee5a49fa1c24f04c9431955ea2290a44f
2015-05-04 18:50:41 +00:00
Jenkins
d9661903c1 Merge "Add JsonPayloadSerializer serializer" 2015-05-03 23:15:22 +00:00
OpenStack Proposal Bot
0941982786 Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: Icad917d28765557a3d9f5b6189e65932e0705cd3
2015-05-03 06:07:54 +00:00
Brant Knudson
60624a62a4 Fix missing space in help text
The help text for the notification_driver option was missing a
space.

Change-Id: I7ccad49c308b04d8fd8e45cb2b0b937f2ca8b189
2015-04-29 09:47:02 -05:00
Jenkins
6a1d3542ea Merge "Port ZMQ driver to Python 3" 2015-04-24 23:32:40 +00:00
Jenkins
712dcc4ca4 Merge "Enable eventlet dependency on Python 3" 2015-04-24 21:46:37 +00:00
Jenkins
9c149331c5 Merge "Fix test_matchmaker_redis on Python 3" 2015-04-24 14:26:06 +00:00
Victor Stinner
50204eea26 Enable eventlet dependency on Python 3
Bump eventlet to 0.17.3, the first release fully supporting Python 3
with monkey-patching.

Add aioeventlet and trollius dependencies for the aioeventlet
executor on Python 3.

This change enables tests of eventlet and aioeventlet executors on
Python 3.

Add futures to Python 3 dependencies even if it's not needed, it's
required to workaround a bug in tox.

Depends-on: I73e3056b5e8b9ce710c9c2d59fc5be8e03e28d2a
Change-Id: I0efae1c91c5d830156b867d7d21b5c0065094665
2015-04-24 14:26:04 +02:00
Victor Sergeyev
e3fa3ca84b Add JsonPayloadSerializer serializer
JsonPayloadSerializer exists in a several OpenStack projects such as
cinder, ironic, magnum, nova, trove so there is a sense to keep it in
oslo.messaging to avoid of code duplication.

Change-Id: I77a6e5e3e717b0afcf17b6200d5b8ff5db6e3262
2015-04-24 11:38:16 +03:00
Victor Stinner
6aff6c371f Fix test_matchmaker_redis on Python 3
redis.smembers(str) returns a list of byte strings.

I missed test failures when I submited my patch to enable redis on
Python 3. I didn't notice that redis tests are skipped when no local
redis server is running.

Change-Id: Ib9ec4e05eb9abd51613f32c93118a1c76649798a
2015-04-21 10:09:31 +02:00
Mehdi Abaakouk
287a4f56f4 Disable and mark heartbeat as experimental
Due to some discovered issues since heartbeat is enabled by default.
Specially #1436788, that needs to fix the underlying library, too.
So, according to the discution here:
https://bugs.launchpad.net/oslo.messaging/+bug/1436769/comments/10

We decide to mark the implementation as experimental and disable it by default.

Related-bug: #1436788
Related-bug: #1436769
Change-Id: Ib7c55977f976bdbbc8df4ad5915e0433cbf84a17
2015-04-17 17:53:46 +02:00
Doug Hellmann
9dd84417fb Uncap library requirements for liberty
Change-Id: I24ae55375016d58db0a3e5f810b702c2270e9158
Depends-On: Ib948b756b8e6ca47a4c9c44c48031e54b7386a06
2015-04-16 18:05:16 +00:00
Victor Stinner
45ca27a8a7 Port ZMQ driver to Python 3
* Fix bytes/unicode issues in the ZMQ driver
* Add pyzmq test dependency on Python 3
* Enable (indirectly) ZMQ driver tests on Python 3

Change-Id: I812f1ec7ad2dcd8e16af70d6f8f9bc3cf7a2225c
Depends-on: I0efae1c91c5d830156b867d7d21b5c0065094665
2015-04-16 15:50:03 +02:00
Jenkins
1305d3e3b8 Merge "Use unittest.mock on Python 3" 2015-04-16 10:13:12 +00:00
Victor Stinner
72c501454e Use unittest.mock on Python 3
The mock module has been added to Python 3.3 as unittest.mock.

The third party mock module doesn't seem to be maintained anymore: the
last commit was in April 2013.

unittest.mock is more recent, has less bugs and is compatible with
Python 3.4. There are bugs on Python 3 in the third party mock module,
examples:

* https://code.google.com/p/mock/issues/detail?id=225
* https://code.google.com/p/mock/issues/detail?id=234

Oslo Messaging hits these issues when running tests on Python 3.4.

Import oslotest to setup six.moves for mock.

Change-Id: Ic160101695cea67eb9bbbfcaddb8d3dac64e6804
2015-04-16 00:07:48 +02:00
Victor Stinner
a00d075312 Enable redis test dependency on Python 3
This change enables test_matchmaker_redis on Python 3.

Change-Id: If50316f96b32f15d8226ece04a265ed0b3362e9b
2015-04-15 11:45:53 +02:00
Jenkins
57cde6b3ab Merge "Remove amqp driver 'unpacked content' logging" 2015-04-15 08:02:01 +00:00
Assaf Muller
9ef3fa8201 Remove amqp driver 'unpacked content' logging
Different OpenStack processes log that line when idle, but it doesn't
offer actionable information to developers or users. Ideally process
logs should be silent when idle, even in debug mode.

Here's a sample:
http://paste.openstack.org/show/201371/

Change-Id: Ib4f63d590a6f5ed295fae12dac12897007b12879
2015-04-10 11:27:09 -04:00
Jenkins
7531f8473a Merge "Add pypi download + version badges" 2015-04-10 14:40:52 +00:00
Jenkins
cf9468dfdb Merge "Updated from global requirements" 2015-04-08 13:12:23 +00:00
Jenkins
133faeba24 Merge "Document notification_driver possible values" 2015-04-08 02:37:38 +00:00
OpenStack Proposal Bot
ef3575d68f Updated from global requirements
Change-Id: I728fcd5d031f83bbda558fa75ac47c2db9725bca
2015-04-07 21:58:56 +00:00
Joshua Harlow
4decea13cb Add pypi download + version badges
Change-Id: Ia49b93afd8e829c1ef47a52596df9580cecefc2a
2015-04-07 09:18:52 -07:00
Jenkins
549f3ce752 Merge "Fix typo in oslo_messaging/_drivers/protocols/amqp/opts.py" 2015-04-06 23:17:37 +00:00
Dan Prince
48441a64a6 Fix TypeError caused by err_msg formatting
The retry variable can be None which causes this exception to be
formatted incorrectly. Switching from %(retry)d to %(retry)s
should handle the case where retry is None more gracefully.

Change-Id: I592ea3e44506afb4a676d8dbe1e659a0e649424e
Closes-bug: #1440755
2015-04-06 13:10:51 -04:00
Mitsuhiro SHIGEMATSU
6a83bfbf35 Fix typo in oslo_messaging/_drivers/protocols/amqp/opts.py
This typo affects a lot of projects.

Change-Id: I98e770d1a585fae58282dc1739107bb472eaca20
2015-04-07 00:02:02 +09:00
Davanum Srinivas
d214770b2b Document notification_driver possible values
Add list of drivers to help and FAQ.

Closes-Bug: #1440480
Change-Id: Ia0ea4693f88aa7550e55e7fb63111065ad9b6c3b
2015-04-06 10:12:08 -04:00
gtt116
07c3e8b049 Do not skip functional test for amqp driver
Since bug #1438742 is fixed, enable tests.

Change-Id: Id05c04e1a1c7e0f162e3105792ad47bd44482d69
2015-04-03 07:40:51 +00:00
Jenkins
6ae44f33e8 Merge "Add functional test for notify.logger" 2015-04-02 20:14:14 +00:00
gtt116
5ec72e8c87 Add functional test for notify.logger
To make sure notify.logger always play well with messaging(v2) driver.
Achieve this by seting up a logger with target logging handler, doing real
logging, finally check notifications that receive from message broker.

Change-Id: I234457974ca48689b9dfc9f7c72b4ea37a57a40b
2015-04-01 02:03:39 +00:00
Kenneth Giusti
6f4e32ad53 Properly deserialize received AMQP 1.0 messages
Change-Id: I5c27c06ca4f5b90e5c54a9519b70f9be0232abff
Closes-bug: #1438742
2015-03-31 11:31:29 -04:00
Jenkins
711f4187d4 Merge "Make notify driver messaging play well with publish_errors" 2015-03-30 10:45:52 +00:00
gtt116
fb8c431ad6 Make notify driver messaging play well with publish_errors
When publish_errors is True, and using `messaging` notify driver,
produces a infinite loop that report sending notification error.

The reason is we always passing None to the content argument in
logger handlers (LoggingNotificationHandler, LoggingErrorNotificationHandler),
when pack the context object which expected as a dict, raise TypeError
exception, so result in infinite retry looping.

To match what document said, passing a empty dict rather than None. Also
modify unittests to make sure context is a empty dict.

Change-Id: Ic2c4c43f5bbafa8107ea370ba959da16cfa4a24c
Closes-bug: #1346466
2015-03-28 11:32:24 +00:00
Jenkins
8b15eb904e Merge "Imported Translations from Transifex" 2015-03-26 15:57:05 +00:00
Jenkins
96c548c09e Merge "Sync with latest oslo-incubator" 2015-03-26 15:53:36 +00:00
Jenkins
c5c6deb410 Merge "Don't raise Timeout on no-matchmaker results" 2015-03-26 15:31:16 +00:00
OpenStack Proposal Bot
c244126b8b Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: Ieed0594381856829167e0d21e769aef3cf9f5f45
2015-03-26 06:08:22 +00:00
Joshua Harlow
8da14f68d3 Use the oslo_utils stop watch in decaying timer
The decaying timer can now just use the functionality
of the oslo_utils stop watch to avoid having to maintain
similar information itself; now it just becomes a thin
layer ontop of that object that provides its functionality.

Change-Id: I1b014b821a6b980590ca5b4d850a515d55c42208
2015-03-23 20:06:22 -07:00
Jenkins
fb160c325d Merge "Remove 'UNIQUE_ID is %s' logging" 2015-03-23 16:42:46 +00:00
OpenStack Proposal Bot
ec1fb8c760 Updated from global requirements
Change-Id: I533f4943a312755e708406eeb1be78208d774fef
2015-03-21 00:17:01 +00:00
Assaf Muller
84c0d3aedc Remove 'UNIQUE_ID is %s' logging
Different OpenStack processes log that line when idle, but it doesn't
offer actionable information to developers or users. Ideally process
logs should be silent when idle, even in debug mode.

Closes-Bug: #1434727
Change-Id: I6f9f2977358d86ada7178c09b04ff6b290a6a8ad
2015-03-20 18:14:28 -04:00
Davanum Srinivas
49c6d9c5ec Sync with latest oslo-incubator
Pick up the changes in versionutils.py for Liberty

Change-Id: I478986b484009531888f7aadb511f52c8371031a
2015-03-20 16:04:41 -04:00
Jenkins
299a1ccc78 Merge "rabbit: fix ipv6 support" 2015-03-20 19:16:17 +00:00
Lukas Bezdicka
9f137948ae rabbit: fix ipv6 support
Url constructed for kombu cannot contain ipv6 address without
brackets. The url.hostname returns hosts without brackets so
we have to readd them.

Change-Id: Ifb1d358a67655af99a84b77ca813fc2dd87d87dc
2015-03-20 15:05:12 +01:00
Jenkins
2deb6fb0b2 Merge "Add pluggability for matchmakers" 2015-03-20 11:36:23 +00:00
Jenkins
ab44f86f8f Merge "Create a unique transport for each server in the functional tests" 2015-03-20 11:33:14 +00:00