Code Review
/
yardstick.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
9e2fafb
)
Bugfix: yardstick env grafana fails when access the server
25/51225/3
author
rexlee8776
<limingjiang@huawei.com>
Sat, 27 Jan 2018 06:15:51 +0000
(06:15 +0000)
committer
Rex Lee
<limingjiang@huawei.com>
Thu, 1 Mar 2018 02:21:44 +0000
(
02:21
+0000)
current timeout is 10 seconds, it would fail if grafana
server start slow in some cases.
JIRA: YARDSTICK-972
Change-Id: I783206fdd1352e94ba7e498283f70b5a6834b6fa
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
api/resources/v1/env.py
patch
|
blob
|
history
diff --git
a/api/resources/v1/env.py
b/api/resources/v1/env.py
index
32a8c73
..
75c981a
100644
(file)
--- a/
api/resources/v1/env.py
+++ b/
api/resources/v1/env.py
@@
-119,7
+119,7
@@
class V1Env(ApiResource):
"isDefault": True,
}
try:
- HttpClient().post(url, data, timeout=
1
0)
+ HttpClient().post(url, data, timeout=
6
0)
except Exception:
LOG.exception('Create datasources failed')
raise