diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2017-08-22 11:25:15 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2017-08-22 11:28:38 +0800 |
commit | aa7c1b474fa2d371ef87212abee08469c190dda4 (patch) | |
tree | bce536fd57b241c303b981ccfc28248743347616 /jjb | |
parent | b1965dcda6bd0fd452e73d60bdd8aa258d2d27f1 (diff) |
bugfix: TestAPI auto deploy success but shown as fail
when execute 'curl -s --head --request GET http://testresults.opnfv.org/test'
'HTTP/1.1 301 Moved Permanently' will be returned rather than 200 OK,
result in the connectivity check fail. To fix this problem,
use 'http://testresults.opnfv.org/test/' instead.
Change-Id: I5d6916c15858b3f431a2ab18aeef7f352cb9e31b
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/releng/automate.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/releng/automate.yml b/jjb/releng/automate.yml index 9f2e1ff4e..c6ca37fa9 100644 --- a/jjb/releng/automate.yml +++ b/jjb/releng/automate.yml @@ -240,7 +240,7 @@ sudo bash ./jjb/releng/docker-deploy.sh "sudo docker run -dti --name testapi -p 8082:8000 -e mongodb_url=mongodb://172.17.0.1:27017 -e base_url=http://testresults.opnfv.org/test opnfv/testapi" \ - "http://testresults.opnfv.org/test" "testapi" + "http://testresults.opnfv.org/test/" "testapi" - builder: name: 'reporting-automate-docker-deploy-macro' |