diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-01-24 20:57:06 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-01-24 20:57:06 +0000 |
commit | 4c0315fd9bf69774e248f091d084c68080c84ab0 (patch) | |
tree | 618b90252ab106cf6af2773765498a3c86228246 | |
parent | 76c35757c9071dbafbaff1114ec2a2ccdeb388d6 (diff) | |
parent | 35e49d5cdd3d0c0cd3963d1cc7d1e1352768cb67 (diff) |
Merge "Specify what to do if endpoint map environment don't match"
-rwxr-xr-x | tools/yaml-validate.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/yaml-validate.py b/tools/yaml-validate.py index 63e3ce51..19e40d19 100755 --- a/tools/yaml-validate.py +++ b/tools/yaml-validate.py @@ -196,8 +196,8 @@ if base_endpoint_map and \ matches = validate_endpoint_map(base_endpoint_map, env_endpoint_map['map']) if not matches: - print("ERROR: %s doesn't match base endpoint map" % - env_endpoint_map['file']) + print("ERROR: %s needs to be updated to match changes in base " + "endpoint map" % env_endpoint_map['file']) failed_files.append(env_endpoint_map['file']) exit_val |= 1 else: |