diff options
author | Huang Haibin <haibin.huang@intel.com> | 2018-02-28 03:44:35 +0800 |
---|---|---|
committer | Huang Haibin <haibin.huang@intel.com> | 2018-03-01 02:39:05 +0800 |
commit | b14e1359642e17daf769ca39fa01e644135191f0 (patch) | |
tree | f29fcbd5c81df64eac4796bdd0c0423d460ebe17 /ocata/vagrant/test | |
parent | b99c0d415f37ca26443514d43f3cc1975185bf74 (diff) |
Move extsys from newton to common
Change-Id: I30ad2ed3a43bcb0ef569bb25d3e51a9ab49ea48a
Issue-ID: MULTICLOUD-138
Signed-off-by: Huang Haibin <haibin.huang@intel.com>
Diffstat (limited to 'ocata/vagrant/test')
-rw-r--r-- | ocata/vagrant/test/Dockerfile | 2 | ||||
-rw-r--r-- | ocata/vagrant/test/extsys.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ocata/vagrant/test/Dockerfile b/ocata/vagrant/test/Dockerfile index 2d9eda54..cc7d2b53 100644 --- a/ocata/vagrant/test/Dockerfile +++ b/ocata/vagrant/test/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update && \ rm -f multicloud-openstack-ocata.zip && \ pip install -r /opt/ocata/requirements.txt -ADD extsys.py /opt/ocata/lib/newton/newton/pub/msapi/extsys.py +ADD extsys.py /opt/ocata/lib/share/common/msapi/extsys.py WORKDIR /opt/ocata CMD /bin/sh -c /opt/ocata/run.sh diff --git a/ocata/vagrant/test/extsys.py b/ocata/vagrant/test/extsys.py index 59cf7a7b..83778914 100644 --- a/ocata/vagrant/test/extsys.py +++ b/ocata/vagrant/test/extsys.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Wind River Systems, Inc. +# Copyright (c) 2017-2018 Wind River Systems, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,8 +14,8 @@ import logging import re from rest_framework import status -from newton.pub.exceptions import VimDriverNewtonException -from newton.pub.utils.restcall import req_by_msb,req_to_aai +from common.exceptions import VimDriverNewtonException +from common.utils.restcall import req_by_msb,req_to_aai logger = logging.getLogger(__name__) |