Skip to content

Commit fc8c8a9

Browse files
committed
Ignore git-sync for now because it is multi-arch
1 parent 14fc364 commit fc8c8a9

File tree

1 file changed

+3
-3
lines changed
  • tools/monitor-oci-artifacts/src

1 file changed

+3
-3
lines changed

tools/monitor-oci-artifacts/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
104104
continue;
105105
}
106106

107-
if project_name == "sdp" {
107+
if project_name == "sdp" && repository_name != "git-sync" {
108108
if artifact.manifest_media_type
109109
!= "application/vnd.docker.distribution.manifest.v2+json"
110110
{
111111
println!(
112-
"unexpected manifest media type: {} for {}{} ({})",
112+
"unexpected manifest media type: {} for {} {} ({})",
113113
artifact.manifest_media_type,
114114
repository_name,
115115
artifact.digest,
@@ -119,7 +119,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
119119
}
120120
if artifact.media_type != "application/vnd.docker.container.image.v1+json" {
121121
println!(
122-
"unexpected media type: {} for {}{} ({})",
122+
"unexpected media type: {} for {} {} ({})",
123123
artifact.media_type,
124124
repository_name,
125125
artifact.digest,

0 commit comments

Comments
 (0)