فهرست منبع

Merge branch 'eta/1.5.1'

Roc 1 سال پیش
والد
کامیت
e9376e0ede
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      services/edb_refresh.go

+ 4 - 0
services/edb_refresh.go

@@ -49,6 +49,10 @@ func ConfigRefreshData(cont context.Context) (err error) {
 	wg.Add(wgNum)
 
 	for _, edbList := range allSourceEdbInfoListMap {
+		if edbList == nil {
+			wg.Done()
+			continue
+		}
 		go BaseRefreshData(&wg, edbList[0].Source, edbList[0].SubSource, edbList)
 	}