From a4954e5142f398b6c1c58330a13f3e18713ad6c6 Mon Sep 17 00:00:00 2001 From: Matt Oswalt Date: Mon, 23 Jan 2017 16:24:38 -0800 Subject: [PATCH] Changed webui smoke test to simply use localhost The previous variable resulted in a hostname that was unknown to the remote node, and this test failed. Since this test is intended to take place on the remote node, localhost should work fine. --- roles/st2smoketests/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/st2smoketests/tasks/main.yml b/roles/st2smoketests/tasks/main.yml index dfb9f807..69307b32 100644 --- a/roles/st2smoketests/tasks/main.yml +++ b/roles/st2smoketests/tasks/main.yml @@ -44,7 +44,7 @@ - name: Check web-ui is up uri: - url: https://{{ ansible_hostname }}/ + url: https://localhost/ validate_certs: no changed_when: no tags: