blob: adaaaf40793427a3f880f99486bafc4252edf173 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Get the log of the specified task
This api offers the interface to get the log of the specified task.
---
tags:
- Tasks
parameters:
- name: task_id
description: task id
in: path
type: string
required: true
definitions:
Task:
type: object
properties:
creds_name:
$ref: '#/definitions/Result'
Result:
type: dict
responses:
200:
description: Get the log of the specified task
schema:
$ref: '#/definitions/Task'
examples:
"result": {
"data": [
"2017-09-14 06:46:26,106 - functest.ci.run_tests - DEBUG - Sourcing the OpenStack RC file... ",
"2017-09-14 06:46:26,107 - functest.ci.run_tests - DEBUG - Test args: connection_check ",
"2017-09-14 06:46:26,107 - functest.ci.run_tests - INFO - Running test case 'connection_check'... ",
"..."]}
"status": 2
|