From 1b069ba63ce0326b139a4742b2bea469fcba1a66 Mon Sep 17 00:00:00 2001 From: anlicheng <244108715@qq.com> Date: Sat, 13 Dec 2025 21:03:58 +0800 Subject: [PATCH] fix --- apps/sdlan/src/sdlan_sup.erl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/sdlan/src/sdlan_sup.erl b/apps/sdlan/src/sdlan_sup.erl index fad7687..1361b3e 100644 --- a/apps/sdlan/src/sdlan_sup.erl +++ b/apps/sdlan/src/sdlan_sup.erl @@ -29,6 +29,14 @@ init([]) -> SupFlags = #{strategy => one_for_one, intensity => 1000, period => 3600}, Specs = [ + #{ + id => dns_proxy_sup, + start => {dns_proxy_sup, start_link, []}, + restart => permanent, + shutdown => 2000, + type => supervisor, + modules => ['dns_proxy_sup'] + }, #{ id => sdlan_network_coordinator, start => {sdlan_network_coordinator, start_link, []},