Code review comment for lp:~openerp-dev/openobject-server/7.0-rstcnx-chs

Revision history for this message
Florent (florent.x) wrote :

Proposed fix (for the enumerate glitch):

- for i, (cnx, used) in enumerate(self._connections):
+ for i, (cnx, used) in enumerate(self._connections[:]):

Explanation of the mis-behaviour was posted here:
https://code.launchpad.net/~florent.x/openobject-server/trunk-bug-905257-fix-reconnect/+merge/132149/comments/323526

« Back to merge proposal