##// END OF EJS Templates
Don't eat comm close error silently.
Jonathan Frederic -
Show More
@@ -121,7 +121,8 b' class CommManager(LoggingConfigurable):'
121 try:
121 try:
122 comm.close()
122 comm.close()
123 except:
123 except:
124 pass # Eat errors, nomnomnom
124 self.log.error("""Could not close comm during `comm_open` failure
125 clean-up. The comm may not have been opened yet.""", exc_info=True)
125
126
126 def comm_msg(self, stream, ident, msg):
127 def comm_msg(self, stream, ident, msg):
127 """Handler for comm_msg messages"""
128 """Handler for comm_msg messages"""
General Comments 0
You need to be logged in to leave comments. Login now