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,