Skip to content
Snippets Groups Projects
Commit 5a619440 authored by kwanggithub's avatar kwanggithub
Browse files

Upgrading Virtual Network Filter to latest bigswitch/quantum plugin (/networkService/v1.1)

parent 9fc3a845
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@ public class NetworkResource extends ServerResource {
else if (n.equals("network")) {
while (jp.nextToken() != JsonToken.END_OBJECT) {
String field = jp.getCurrentName();
if (field == null) continue;
if (field.equals("name")) {
network.name = jp.getText();
} else if (field.equals("gateway")) {
......
......@@ -37,6 +37,6 @@ public class VirtualNetworkWebRoutable implements RestletRoutable {
@Override
public String basePath() {
return "/quantum/v1.0";
return "/networkService/v1.1";
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment