From 1c1462933e8850a33c70c76f634789f8e5c24708 Mon Sep 17 00:00:00 2001 From: paulfantom Date: Thu, 18 Jun 2020 17:44:28 +0200 Subject: [PATCH] molecule/alternative: add test-case for different listen address retry [patch] release as it didn't happen in previous commit --- molecule/alternative/playbook.yml | 1 + molecule/alternative/tests/test_alternative.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/molecule/alternative/playbook.yml b/molecule/alternative/playbook.yml index 991a4b8..ce050ec 100644 --- a/molecule/alternative/playbook.yml +++ b/molecule/alternative/playbook.yml @@ -22,6 +22,7 @@ dest: "{{ node_exporter_tls_server_config.key_file }}" vars: node_exporter_binary_local_dir: "/tmp/node_exporter-linux-amd64" + node_exporter_web_listen_address: "127.0.0.1:8080" node_exporter_textfile_dir: "" node_exporter_enabled_collectors: - entropy diff --git a/molecule/alternative/tests/test_alternative.py b/molecule/alternative/tests/test_alternative.py index 87cfc15..77d8477 100644 --- a/molecule/alternative/tests/test_alternative.py +++ b/molecule/alternative/tests/test_alternative.py @@ -22,7 +22,7 @@ def test_service(host): def test_socket(host): sockets = [ - "tcp://127.0.0.1:9100" + "tcp://127.0.0.1:8080" ] for socket in sockets: s = host.socket(socket)