From 0f8e5789f9f68648abb6da249e82cc1f279ac7b0 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Thu, 2 Dec 2021 09:34:29 -0800 Subject: [PATCH 1/2] Fix V6 interface binding Both `v4_interfaces` and `v6_interfaces` were using V4 interfaces. Signed-off-by: JP Simard --- library/common/engine.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/common/engine.cc b/library/common/engine.cc index 68a687738d..08cfa031ad 100644 --- a/library/common/engine.cc +++ b/library/common/engine.cc @@ -105,7 +105,7 @@ envoy_status_t Engine::main(const std::string config, const std::string log_leve network_configurator_ = Network::ConfiguratorFactory{server_->serverFactoryContext()}.get(); auto v4_interfaces = network_configurator_->enumerateV4Interfaces(); - auto v6_interfaces = network_configurator_->enumerateV4Interfaces(); + auto v6_interfaces = network_configurator_->enumerateV6Interfaces(); logInterfaces("netconf_get_v4_interfaces", v4_interfaces); logInterfaces("netconf_get_v6_interfaces", v6_interfaces); client_scope_ = server_->serverFactoryContext().scope().createScope("pulse."); From 7defd2290f8b649dc838132ee5e2fca4f677de09 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Thu, 2 Dec 2021 13:34:31 -0500 Subject: [PATCH 2/2] Kick CI Signed-off-by: JP Simard