Skip to content

Commit b52bffb

Browse files
author
Malte Münch
authored
Merge pull request #59 from gardenlinux/57-state-untested-when-reading-from-tarball
Removes static state: UNTESTED
2 parents 8ba1a46 + 24f4efc commit b52bffb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python_gardenlinux_lib/oras/registry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ def push_image_manifest(
623623
manifest_image["annotations"]["cname"] = cname
624624
manifest_image["annotations"]["architecture"] = architecture
625625
manifest_image["annotations"]["feature_set"] = feature_set
626-
attach_state(manifest_image["annotations"], "UNTESTED")
626+
attach_state(manifest_image["annotations"], "")
627627

628628
config_annotations = {"cname": cname, "architecture": architecture}
629629
conf, config_file = create_config_from_dict(dict(), config_annotations)
@@ -645,7 +645,7 @@ def push_image_manifest(
645645

646646
# This ends up in the index-entry for the manifest
647647
metadata_annotations = {"cname": cname, "architecture": architecture}
648-
attach_state(metadata_annotations, "UNTESTED")
648+
attach_state(metadata_annotations, "")
649649
metadata_annotations["feature_set"] = feature_set
650650
manifest_digest = self.get_digest(manifest_container)
651651
manifest_index_metadata = NewManifestMetadata(

0 commit comments

Comments
 (0)