On Apr 1, 2006, at 11:07 AM, mario ruggier wrote: > def process_hit(self, hit): > try: > self.get_connection().abort() Doing this on each hit loses the unsaved session data, so breaks login pretty badly. Calling commit() instead seems to function ok, but may not be the best thing to do? What would be the better thing to call here to force a socket.error if server is down or connection is broken?