Merge "Support v2 schema versions"

This commit is contained in:
Zuul 2019-06-21 17:06:49 +00:00 committed by Gerrit Code Review
commit a2b2964608
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ from deckhand import types
LOG = logging.getLogger(__name__)
_DEFAULT_SCHEMAS = {}
_SUPPORTED_SCHEMA_VERSIONS = ('v1',)
_SUPPORTED_SCHEMA_VERSIONS = ('v1', 'v2')
def _get_schema_parts(document, schema_key='schema'):