Exemple #1
0
 def _shutdown(self, warm=True):
     # if blueprint does not exist it means that we had an
     # error before the bootsteps could be initialized.
     if self.blueprint is not None:
         with default_socket_timeout(SHUTDOWN_SOCKET_TIMEOUT):  # Issue 975
             self.blueprint.stop(self, terminate=not warm)
             self.blueprint.join()
 def _shutdown(self, warm=True):
     # if blueprint does not exist it means that we had an
     # error before the bootsteps could be initialized.
     if self.blueprint is not None:
         with default_socket_timeout(SHUTDOWN_SOCKET_TIMEOUT):  # Issue 975
             self.blueprint.stop(self, terminate=not warm)
             self.blueprint.join()