From 14be84d2d0fb325df2218fbee946cc7798b92b4b Mon Sep 17 00:00:00 2001 From: Alexandr Stelnykovych Date: Tue, 11 Nov 2025 18:20:10 +0200 Subject: [PATCH] fix(instance): re-add dnsmonitor to serviceGroupInterception module --- service/instance.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/service/instance.go b/service/instance.go index ebf53fd1..746dfb54 100644 --- a/service/instance.go +++ b/service/instance.go @@ -317,11 +317,7 @@ func New(svcCfg *ServiceConfig) (*Instance, error) { //nolint:maintidx // Grouped interception modules that can be paused/resumed together. instance.serviceGroupInterception = mgr.NewGroupModule("Interception Group", instance.interception, - - // TODO: The dnsmonitor is currently not part of this group, as it has inconsistent issue when stopping. - // Fix chars-issue of this module and re-add it here. - //instance.dnsmonitor, - + instance.dnsmonitor, instance.compat) // Add all modules to instance group. @@ -357,7 +353,6 @@ func New(svcCfg *ServiceConfig) (*Instance, error) { //nolint:maintidx // instance.dnsmonitor, // instance.compat instance.serviceGroupInterception, - instance.dnsmonitor, // TODO: Remove when re-added to serviceGroupInterception group. instance.status, instance.broadcasts,