aboutsummaryrefslogtreecommitdiffstats
path: root/functest/api
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-09-14 04:48:00 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-14 04:48:00 +0000
commit42c99773c40f669b18c489a8f8b1c9bbb79d51d9 (patch)
tree908e927a16e11614ec905180d0fda45998282fd2 /functest/api
parent0e491adc1b1a1fc16db22c160e08b16d19cae45a (diff)
parent0d95b22ced9b46d8ec828bee2079644987fc3e0a (diff)
Merge "Allow reading log file with byte offset"
Diffstat (limited to 'functest/api')
-rw-r--r--functest/api/resources/v1/tasks.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/functest/api/resources/v1/tasks.py b/functest/api/resources/v1/tasks.py
index f099918f4..492141249 100644
--- a/functest/api/resources/v1/tasks.py
+++ b/functest/api/resources/v1/tasks.py
@@ -80,11 +80,15 @@ class V1TaskLog(ApiResource):
return api_utils.result_handler(status=1, data='No such task id')
task_log_dir = CONST.__getattribute__('dir_results')
+ # pylint: disable=maybe-no-member
+ index = int(self._get_args().get('index', 0))
try:
with open(os.path.join(task_log_dir,
'{}.log'.format(task_id)), 'r') as log_file:
+ log_file.seek(index)
data = log_file.readlines()
+ index = log_file.tell()
except OSError as err:
if err.errno == errno.ENOENT:
return api_utils.result_handler(
@@ -93,7 +97,7 @@ class V1TaskLog(ApiResource):
return api_utils.result_handler(
status=1, data='Error with log file')
- return_data = {'data': data}
+ return_data = {'data': data, 'index': index}
switcher = {'IN PROGRESS': 0, 'FAIL': 1, 'FINISHED': 2}