Parcourir la source

[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.
Marcin Siodelski il y a 8 ans
Parent
commit
056e3d38a2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/bin/agent/tests/testdata/get_config.json

+ 1 - 1
src/bin/agent/tests/testdata/get_config.json

@@ -22,7 +22,7 @@
                 }
             }
         ],
-        "http-host": "localhost",
+        "http-host": "127.0.0.1",
         "http-port": 8000
     }
 }