Merge remote-tracking branch 'origin/rc-0.14.2' into api-aaron

This commit is contained in:
Aaron Blankstein
2017-04-12 14:24:56 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -689,7 +689,7 @@ def get_all_namespaces(offset=None, count=None, proxy=None):
resp = {}
try:
resp = proxy.get_all_namespaces()
resp = json_validate(namespaces__schema, resp)
resp = json_validate(namespaces_schema, resp)
if json_is_error(resp):
return resp
except ValidationError as e: