add "get_" prefix to all db read funcs

This commit is contained in:
Jimmy Zelinskie 2016-08-03 14:00:40 -04:00
parent 56951397a9
commit b68e1b5efc
3 changed files with 7 additions and 7 deletions

View file

@ -155,7 +155,7 @@ def _write_manifest(namespace_name, repo_name, manifest):
# Lookup all the images and their parent images (if any) inside the manifest.
# This will let us know which v1 images we need to synthesize and which ones are invalid.
all_image_ids = list(manifest.docker_image_ids | manifest.parent_image_ids)
images_map = v2.docker_v1_metadata_by_image_id(namespace_name, repo_name, all_image_ids)
images_map = v2.get_docker_v1_metadata_by_image_id(namespace_name, repo_name, all_image_ids)
# Rewrite any v1 image IDs that do not match the checksum in the database.
try:
@ -228,7 +228,7 @@ def delete_manifest_by_digest(namespace_name, repo_name, digest):
def _generate_and_store_manifest(namespace_name, repo_name, tag_name):
# Find the v1 metadata for this image and its parents.
v1_metadata = v2.docker_v1_metadata_by_tag(namespace_name, repo_name, tag_name)
v1_metadata = v2.get_docker_v1_metadata_by_tag(namespace_name, repo_name, tag_name)
parents_v1_metadata = v2.get_parents_docker_v1_metadata(namespace_name, repo_name,
v1_metadata.image_id)