Merge "Add debug statement for response data"

This commit is contained in:
Zuul 2017-11-20 06:13:14 +00:00 committed by Gerrit Code Review
commit 72af31b4e2
1 changed files with 10 additions and 0 deletions

View File

@ -1161,6 +1161,8 @@ def network_driver_create_endpoint():
_process_interface_address(
fixed_ip, subnets_dict_by_id, response_interface)
LOG.debug("Response JSON data %s for /NetworkDriver.CreateEndpoint",
{'Interface': response_interface})
return flask.jsonify({'Interface': response_interface})
@ -1189,6 +1191,8 @@ def network_driver_endpoint_operational_info():
response_port_status = (
_get_neutron_port_status_from_docker_endpoint(endpoint_id))
LOG.debug("Response JSON data %s for /NetworkDriver.EndpointOperInfo",
{'Value': response_port_status})
return flask.jsonify({'Value': response_port_status})
@ -1354,6 +1358,8 @@ def network_driver_join():
}
join_response['StaticRoutes'].append(static_route)
LOG.debug("Response JSON data %s for /NetworkDriver.Join",
join_response)
return flask.jsonify(join_response)
@ -1570,6 +1576,8 @@ def ipam_request_pool():
req_pool_res = {'PoolID': pool_id,
'Pool': subnet_cidr}
LOG.debug("Response JSON data %s for /IpamDriver.RequestPool",
req_pool_res)
return flask.jsonify(req_pool_res)
@ -1730,6 +1738,8 @@ def ipam_request_address():
allocated_address = '{}/{}'.format(req_address,
subnet_cidr.prefixlen)
LOG.debug("Response JSON data %s for /IpamDriver.RequestAddress",
{'Address': allocated_address})
return flask.jsonify({'Address': allocated_address})