Fix client argument for neutronclient

Change-Id: I93f09b21af98882069b6c7cd36f034927eb51e1c
This commit is contained in:
chenhb 2019-07-10 20:36:55 +08:00
parent df49ebf749
commit 1592286c4c
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ CONF = cfg.CONF
def _get_client():
token = id_client.get_scoped_token_v3("user")
return Client(endpoint=CONF.syntribos.endpoint, token=token)
return Client(endpoint_url=CONF.syntribos.endpoint, token=token)
def create_network(conn):