Browse Source

Fix https://github.com/XTLS/Xray-core/issues/320

RPRX 4 năm trước cách đây
mục cha
commit
4b97edae74
1 tập tin đã thay đổi với 5 bổ sung4 xóa
  1. 5 4
      main/run.go

+ 5 - 4
main/run.go

@@ -16,7 +16,6 @@ import (
 	"github.com/xtls/xray-core/common/cmdarg"
 	"github.com/xtls/xray-core/common/platform"
 	"github.com/xtls/xray-core/core"
-	"github.com/xtls/xray-core/infra/conf"
 	"github.com/xtls/xray-core/main/commands/base"
 )
 
@@ -82,9 +81,11 @@ func executeRun(cmd *base.Command, args []string) {
 	}
 	defer server.Close()
 
-	conf.FileCache = nil
-	conf.IPCache = nil
-	conf.SiteCache = nil
+	/*
+		conf.FileCache = nil
+		conf.IPCache = nil
+		conf.SiteCache = nil
+	*/
 
 	// Explicitly triggering GC to remove garbage from config loading.
 	runtime.GC()