def do_setup(self, context): self.client = self._create_client() LOG.info(_("HP3PARCommon %(common_ver)s, hp3parclient %(rest_ver)s") % {"common_ver": self.VERSION, "rest_ver": hp3parclient.get_version_string()}) if self.config.hp3par_debug: self.client.debug_rest(True) self.client_login() try: # make sure the default CPG exists self.validate_cpg(self.config.hp3par_cpg) self._set_connections() finally: self.client_logout()
def do_setup(self, context): try: self.client = self._create_client() except hpexceptions.UnsupportedVersion as ex: raise exception.InvalidInput(str(ex)) LOG.info(_("HP3PARCommon %(common_ver)s, hp3parclient %(rest_ver)s") % {"common_ver": self.VERSION, "rest_ver": hp3parclient.get_version_string()}) if self.config.hp3par_debug: self.client.debug_rest(True) self.client_login() try: # make sure the default CPG exists self.validate_cpg(self.config.hp3par_cpg) finally: self.client_logout()
def do_setup(self, context): self.client = self._create_client() LOG.info( _("HP3PARCommon %(common_ver)s, hp3parclient %(rest_ver)s") % { "common_ver": self.VERSION, "rest_ver": hp3parclient.get_version_string() }) if self.config.hp3par_debug: self.client.debug_rest(True) self.client_login() try: # make sure the default CPG exists self.validate_cpg(self.config.hp3par_cpg) self._set_connections() finally: self.client_logout()