Skip to content

Commit

Permalink
Merge "Closes-Bug:#1538534 VRouter introspect flows response is chang…
Browse files Browse the repository at this point in the history
…ed,src_vn and dst_vn to src_vn_match and dst_vn_match respectively and corresponding changes are done in parser function."
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Jan 27, 2016
2 parents 3277862 + 716eddd commit 06c9095
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1273,8 +1273,8 @@ define(
} else {
$.each(response,function(idx,obj) {
var rawJson = obj;
ret.push({src_vn:ifNullOrEmptyObject(obj['src_vn'],noDataStr),
dst_vn:ifNullOrEmptyObject(obj['dst_vn'],noDataStr),
ret.push({src_vn:ifNullOrEmptyObject(obj['src_vn_match'],noDataStr),
dst_vn:ifNullOrEmptyObject(obj['dst_vn_match'],noDataStr),
protocol:ifNullOrEmptyObject(obj['protocol'],noDataStr),
sip:ifNullOrEmptyObject(obj['sip'],noDataStr),
src_port:ifNullOrEmptyObject(obj['src_port'],noDataStr),
Expand Down

0 comments on commit 06c9095

Please sign in to comment.