Commit da9540e6 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix incorrect number of values assed to format string.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19017 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 2061e705
......@@ -288,7 +288,7 @@ class SQLQueue(RAMQueue, SQLBase):
# It is possible that the message is executed but the commit
# of the transaction fails
value[1].is_executed = 0
LOG('SQLQueue', WARNING, 'Exception raised when invoking message (uid, path, method_id) %r' % (value[0], value[1].object_path, value[1].method_id), error=sys.exc_info())
LOG('SQLQueue', WARNING, 'Exception raised when invoking message (uid, path, method_id) %r' % ((value[0], value[1].object_path, value[1].method_id), ), error=sys.exc_info())
try:
# Rollback all changes made on activity connection.
# We will commit to make messages available, and we cannot control
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment