Activity log for bug #1337296

Date Who What changed Old value New value Message
2014-07-03 11:53:01 Evan bug added bug
2014-07-03 11:57:53 Evan description "image-store: Missing or invalid authentication info." Digging at this further, I arrive at: 71 try: 72 self._create_container(self.container_id) 73 except client.ClientException: 74 raise DataStoreException("Missing or invalid authentication info.") So this has eaten the details of the exception and left us with no way to understand why it failed. This should instead surface the original message, with all of its detail, up to the health check page. It should also provide the arguments it used in create_container such that Webops can reproduce this with the openstack command line tools. "image-store: Missing or invalid authentication info." Digging at this further, I arrive at: 60 except (KeyError, ksclient.exceptions.Unauthorized, 61 ksclient.exceptions.AuthorizationFailure): 62 raise self.ImageStoreException( 63 "Missing or invalid authentication info." 64 ) So this has eaten the details of the exception and left us with no way to understand why it failed. This should instead surface the original message, with all of its detail, up to the health check page. It should also provide the arguments it used in create_container such that Webops can reproduce this with the openstack command line tools.