Skip to content

Commit

Permalink
Fix load_schema_and_validate() (#528)
Browse files Browse the repository at this point in the history
* Fix load_schema_and_validate()

* Update validation warning end marker
  • Loading branch information
eshiroma authored Aug 26, 2020
1 parent 6222f78 commit f7c9e5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion marketplace/deployer_util/schema_values_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def load_schema(parsed_args):


def load_schema_and_validate(parsed_args):
return load_schema(parsed_args.schema_file).validate()
return load_schema(parsed_args).validate()


@memoize
Expand Down
2 changes: 1 addition & 1 deletion scripts/verify
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function print_summary() {
echo "WARNING: Schema is incompatible with the latest deployer, would fail with:"
echo
echo "$validation_errors"
echo "=================================="
echo "======== END OF WARNING ========="
fi

if [[ -s "$error_summary_path" ]]; then
Expand Down

0 comments on commit f7c9e5c

Please sign in to comment.