Merge "Cleanup orphaned code from image and manager"

This commit is contained in:
Jenkins 2016-05-13 18:37:06 +00:00 committed by Gerrit Code Review
commit c4aa40a167
3 changed files with 0 additions and 23 deletions

View File

@ -196,9 +196,6 @@ class ImageVolumeCache(object):
# Delete will evict the cache entry.
self.volume_api.delete(context, volume_ref)
def _get_image_volume_name(self, image_id):
return 'image-volume-' + image_id
def _should_update_entry(self, cache_entry, image_meta):
"""Ensure that the cache entry image data is still valid."""
image_updated_utc = (image_meta['updated_at']

View File

@ -319,16 +319,6 @@ class GlanceImageService(object):
except Exception:
_reraise_translated_image_exception(image_id)
def delete_locations(self, context, image_id, url_set):
"""Delete backend location urls from an image."""
if CONF.glance_api_version != 2:
raise exception.Invalid("Image API version 2 is disabled.")
client = GlanceClientWrapper(version=2)
try:
return client.call(context, 'delete_locations', image_id, url_set)
except Exception:
_reraise_translated_image_exception(image_id)
def download(self, context, image_id, data=None):
"""Calls out to Glance for data and writes data."""
if data and 'file' in CONF.allowed_direct_url_schemes:

View File

@ -61,7 +61,6 @@ from cinder.db import base
from cinder.i18n import _LI
from cinder import rpc
from cinder.scheduler import rpcapi as scheduler_rpcapi
from cinder import version
from eventlet import greenpool
@ -112,15 +111,6 @@ class Manager(base.Base, PeriodicTasks):
"""
pass
def service_version(self):
return version.version_string()
def service_config(self):
config = {}
for key in CONF:
config[key] = CONF.get(key, None)
return config
def is_working(self):
"""Method indicating if service is working correctly.