From 056e3d38a21e28e40bcc0d9a18b8b6494669ddaa Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Mon, 3 Apr 2017 20:44:16 +0200 Subject: [PATCH] [master] Trivial fix to address regression after #5175. The example config for control agent uses IP address of 127.0.0.1 rather than localhost. This caused regression in some unit tests that use this configuration. The trivial fix committed on my discretion. --- src/bin/agent/tests/testdata/get_config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/agent/tests/testdata/get_config.json b/src/bin/agent/tests/testdata/get_config.json index 3c264b0354..cfac8d3eb3 100644 --- a/src/bin/agent/tests/testdata/get_config.json +++ b/src/bin/agent/tests/testdata/get_config.json @@ -22,7 +22,7 @@ } } ], - "http-host": "localhost", + "http-host": "127.0.0.1", "http-port": 8000 } }