Skip to content

Commit

Permalink
Fix outdated image checker (#3069)
Browse files Browse the repository at this point in the history
Fixes #3066
  • Loading branch information
karolz-ms authored Jul 15, 2021
1 parent 26a267e commit f5fb52a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tree/images/imageChecker/OutdatedImageChecker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ export class OutdatedImageChecker {
return request;
});

return manifestResponse.headers['docker-content-digest'];
return manifestResponse.headers.get('docker-content-digest') as string;
}
}

0 comments on commit f5fb52a

Please sign in to comment.