##// END OF EJS Templates
Fix kernel restart in case connection file is deleted....
Pankaj Pandey -
Show More
@@ -473,7 +473,7 b' class ConnectionFileMixin(Configurable):'
473
473
474 def write_connection_file(self):
474 def write_connection_file(self):
475 """Write connection info to JSON dict in self.connection_file."""
475 """Write connection info to JSON dict in self.connection_file."""
476 if self._connection_file_written:
476 if self._connection_file_written and os.path.exists(self.connection_file):
477 return
477 return
478
478
479 self.connection_file, cfg = write_connection_file(self.connection_file,
479 self.connection_file, cfg = write_connection_file(self.connection_file,
General Comments 0
You need to be logged in to leave comments. Login now