Skip to content

Commit b4f2e10

Browse files
chore: remove unneeded logs
1 parent 2015a39 commit b4f2e10

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/cd_tools.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)