From 1add59cd0dc1ca1a1acc8b66e9e45687c4e52128 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Wed, 29 Aug 2018 17:19:44 +0200 Subject: [PATCH] actually start the cleanup task --- common/strmatcher/strmatcher.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/strmatcher/strmatcher.go b/common/strmatcher/strmatcher.go index 17a6ca482..5314d08a4 100644 --- a/common/strmatcher/strmatcher.go +++ b/common/strmatcher/strmatcher.go @@ -5,6 +5,7 @@ import ( "sync" "time" + "v2ray.com/core/common" "v2ray.com/core/common/task" ) @@ -149,6 +150,7 @@ func NewCachedMatcherGroup(g *MatcherGroup) *CachedMatcherGroup { return nil }, } + common.Must(r.cleanup.Start()) return r }