~ubuntu-branches/ubuntu/quantal/glance/quantal

« back to all changes in this revision

Viewing changes to glance/notifier/notify_kombu.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Dave Walker (Daviey
  • Date: 2012-02-17 09:50:40 UTC
  • mfrom: (1.1.28)
  • Revision ID: package-import@ubuntu.com-20120217095040-i5fk163vyuryak76
Tags: 2012.1~e4~20120217.1275-0ubuntu1
[ Chuck Short ]
* New upstream release.

[ Dave Walker (Daviey ]
* debian/patches/fix-broken-unittests.patch: Back out patch as it seems 
  to be present in upstream git, but missing in upstream tarballs. Which
  is blocking CI testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
 
172
172
    def _send_message(self, msg, routing_key):
173
173
        """Send a message.  Caller needs to catch exceptions for retry."""
174
 
        msg = self.exchange.Message(json.dumps(message))
 
174
        msg = self.exchange.Message(json.dumps(msg))
175
175
        self.exchange.publish(msg, routing_key=routing_key)
176
176
 
177
177
    def _notify(self, msg, priority):