Statistics
| Branch: | Tag: | Revision:

root / logic / amqp_connection.py @ 404ccab2

History | View | Annotate | Download (3.8 kB)

# Date Author Comment
05e404b8 08/30/2011 02:15 pm Giorgos Gousios

Don't retry forever to reconnect

190ac01d 08/29/2011 10:37 am Giorgos Gousios

A bit more well defined error messages

29053267 08/24/2011 01:23 pm Giorgos Gousios

Force the connection obj to re-initialize on error

When an error occurs to the AMQP connection, the code will automatically
attempt to re-establish the connection. Before this fix, it used the
same (stale) connection object. The fix deletes the object explicitely....

f2bdb9ab 07/11/2011 01:29 pm Giorgos Gousios

Use log.exception to report exceptions

464a3579 06/01/2011 12:55 pm Giorgos Gousios

License header and a bit of documentation

6afc46cb 05/18/2011 02:26 pm Giorgos Gousios

Better error handling in AMQP connector

5ad78098 05/18/2011 02:11 pm Giorgos Gousios

Format and send email

75d20793 05/18/2011 02:10 pm Giorgos Gousios

Persistent connector to AMQP

Maintains an open connection per running interpreter, through a global static variable

4f6e36d9 05/17/2011 04:44 pm Giorgos Gousios

"Persistent" connection to AMQP

Uses a global variable, statically initialized, to AMQP.
Inspired after a discussion with verigk about persistent objects in Django.