diff options
author | Jing Lu <lvjing5@huawei.com> | 2017-04-06 07:01:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-04-06 07:01:18 +0000 |
commit | 9c7086ce2f23aa4dd47373208651ff1e560c41de (patch) | |
tree | d9b0fbe7c0b767035ebb6d9cfd9c14b3d9a7da02 /api/utils/daemonthread.py | |
parent | c5a35bcde80df0dd367e40b9acd7f941b33dc4bc (diff) | |
parent | 221f4482bab3361cdb69161147e4d32d098d9a43 (diff) |
Merge "Yardstick virtualenv support" into stable/danube
Diffstat (limited to 'api/utils/daemonthread.py')
-rw-r--r-- | api/utils/daemonthread.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/utils/daemonthread.py b/api/utils/daemonthread.py index 0049834eb..3d5625547 100644 --- a/api/utils/daemonthread.py +++ b/api/utils/daemonthread.py @@ -11,7 +11,7 @@ import threading import os import errno -from api import conf +from yardstick.common import constants as consts from api.database.handlers import TasksHandler @@ -43,7 +43,7 @@ class DaemonThread(threading.Thread): def _handle_testsuite_file(task_id): try: - os.remove(os.path.join(conf.TEST_SUITE_PATH, task_id + '.yaml')) + os.remove(os.path.join(consts.TESTSUITE_DIR, task_id + '.yaml')) except OSError as e: if e.errno != errno.ENOENT: raise |