Merge "Removing caching cruft from bin/glance" into milestone-proposed

This commit is contained in:
Jenkins 2011-12-15 19:03:39 +00:00 committed by Gerrit Code Review
commit 1df042dcf6
1 changed files with 0 additions and 32 deletions

View File

@ -26,7 +26,6 @@ import functools
import gettext
import optparse
import os
import re
import sys
import time
@ -81,15 +80,6 @@ def catch_error(action):
return wrap
def get_percent_done(image):
try:
pct_done = image['size'] * 100 / int(image['expected_size'])
except (ValueError, ZeroDivisionError):
# NOTE(sirp): Ignore if expected_size isn't a number, or if it's 0
pct_done = "UNKNOWN"
return pct_done
def get_image_fields_from_args(args):
"""
Validate the set of arguments passed as field name/value pairs
@ -929,28 +919,6 @@ Commands:
clear Removes all images and metadata from Glance
Cache Commands:
cache-index List all images currently cached
cache-invalid List current invalid cache images
cache-incomplete List images currently being fetched
cache-prefetching List images that are being prefetched
cache-prefetch Pre-fetch an image or list of images into the cache
cache-purge Purges an image from the cache
cache-clear Removes all images from the cache
cache-reap-invalid Reaps any invalid images that were left for
debugging purposes
cache-reap-stalled Reaps any stalled incomplete images
Member Commands:
image-members List members an image is shared with