Disable verification of schemas temporarily while we determine why some older schemas don't validate
This commit is contained in:
parent
a156c91962
commit
b7b64d84d3
1 changed files with 1 additions and 0 deletions
|
@ -221,6 +221,7 @@ class Manifest(datatype('Manifest', ['digest', 'media_type', 'manifest_bytes']))
|
|||
|
||||
def get_parsed_manifest(self, validate=True):
|
||||
""" Returns the parsed manifest for this manifest. """
|
||||
validate = False # Temporarily disable.
|
||||
return parse_manifest_from_bytes(self.manifest_bytes, self.media_type, validate=validate)
|
||||
|
||||
@property
|
||||
|
|
Reference in a new issue