File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,6 @@ def get_component_descriptor_from_registry(
6161 absent_ok = False ,
6262 )
6363
64- print (f'loading json from { cd_url } with digest { manifest .config .digest } ' )
6564 # Note original code catches exception and has some fallback
6665 cfg_dict = json .loads (
6766 self .client .blob (
@@ -80,13 +79,11 @@ def get_component_descriptor_from_registry(
8079 print (f'Warning: Unexpected { layer_mimetype } MIME-type, expected one of '
8180 f'{ gci .oci .component_descriptor_mimetypes } ' )
8281
83- print (f'retrieving blob for descriptor from ${ cd_url } with digest' )
8482 blob_res = self .client .blob (
8583 image_reference = cd_url ,
8684 digest = layer_digest ,
8785 stream = False , # manifests are typically small - do not bother w/ streaming
8886 )
89- print (f'reading blob io ${ cd_url } ' )
9087 # wrap in fobj
9188 blob_fobj = io .BytesIO (blob_res .content )
9289 if as_yaml :
You can’t perform that action at this time.
0 commit comments