重新启动服务后,我想检查应用程序的URI是否可用,尽管可以在浏览器上访问URI,但以下代码却因错误而失败。
致命:[localhost-> 00001-xx.xxxcloud.com]:失败! => {“尝试”:3,“已更改”:false,“内容”:“”,“ msg”:“状态码为-1而不是[200]:请求失败:”,“重定向”:false,“状态”:-1,“ URL”:“ http://00001-xx.xxxcloud.com:1080/resources/index.html”}
我已经尝试过验证:false / no无济于事。
- name: Wait untils Service URI is available
uri:
url: "{{ waiturl }}"
status_code: 200
validate: no
register: result
until: result.status == 200
retries: 8
当代码到达URL时,Status_code应该为200而不是-1