Fix URL hosts

This commit is contained in:
2019-12-23 21:17:30 -05:00
parent 142e1f186d
commit 914b3d84e1
2 changed files with 2 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ swagger_file = "docs/manuals/swagger.json"
swagger_data = swagger(pvc_api.app)
swagger_data['info']['version'] = "1.0"
swagger_data['info']['title'] = "PVC Client and Provisioner API"
swagger_data['info']['url'] = "http://pvc.local:7570"
swagger_data['host'] = "pvc.local:7570"
with open(swagger_file, 'w') as fd:
fd.write(json.dumps(swagger_data, sort_keys=True, indent=4))