Merge "Change async static route call to sync"

This commit is contained in:
Jenkins 2016-04-06 23:24:46 +00:00 committed by Gerrit Code Review
commit 2da49e896a

View File

@ -230,7 +230,7 @@ class Vcns(object):
return self.do_request(HTTP_GET, uri)
def update_routes(self, edge_id, routes):
uri = "%s/%s/routing/config/static?async=true" % (URI_PREFIX, edge_id)
uri = "%s/%s/routing/config/static" % (URI_PREFIX, edge_id)
return self.do_request(HTTP_PUT, uri, routes)
def create_lswitch(self, lsconfig):