Browse Source

Merge branch 'bzq/dev' of eta_mini/eta_mini_bridge into debug

鲍自强 8 months ago
parent
commit
1035938553
1 changed files with 1 additions and 3 deletions
  1. 1 3
      utils/config.go

+ 1 - 3
utils/config.go

@@ -60,7 +60,6 @@ var (
 	MINI_REPORT_INDEX_NAME         string // 小程序的pdf报告索引
 	EsReportIndexName              string //研报ES索引
 	EsSemanticAnalysisDocIndexName string //ES语义分析文档索引名
-	SmartReportIndexName           string //智能研报ES索引
 )
 
 func init() {
@@ -124,13 +123,12 @@ func init() {
 	}
 	// ES 索引
 	{
-		MINI_REPORT_INDEX_NAME = config["mini_report_index_name"]
+		MINI_REPORT_INDEX_NAME = config["es_mini_report_index_name"]
 		if MINI_REPORT_INDEX_NAME == "" {
 			MINI_REPORT_INDEX_NAME = "test_dw_mini_pdf_report_v1"
 		}
 		EsReportIndexName = config["es_report_index_name"]
 		EsSemanticAnalysisDocIndexName = config["es_semantic_analysis_doc_index_name"]
-		SmartReportIndexName = config["es_smart_report_index_name"]
 	}
 	initEs()