Remove bad log message in get_remote_image_service

There was a LOG.debug() message in the
nova.image.glance.get_remote_image_service() call that was incorrect and
misleading:

LOG.debug(_("fetching image %s from glance") % image_href)

This function actually does not fetch any image from Glance -- rather,
it is just used to get the default image service object or an image
service object for use with a remote Glance server.

Change-Id: I2b71c2c52d6593ad4677767a6f2bb40c399fe9eb
Closes-bug: #1292984
This commit is contained in:
Jay Pipes 2014-03-16 09:14:21 -04:00
parent 185c8ae7c6
commit 8d2b250105
1 changed files with 0 additions and 2 deletions

View File

@ -579,8 +579,6 @@ def get_remote_image_service(context, image_href):
:returns: a tuple of the form (image_service, image_id)
"""
# Calling out to another service may take a while, so lets log this
LOG.debug(_("fetching image %s from glance") % image_href)
#NOTE(bcwaldon): If image_href doesn't look like a URI, assume its a
# standalone image ID
if '/' not in str(image_href):