Merge pull request 'feat-IRONFANS-134-Robin' (#500) from feat-IRONFANS-134-Robin into main

Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/500
This commit is contained in:
chenhao 2024-05-24 23:28:05 +08:00
commit 359f1b6322
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func (es *ElasticSearch) getIndexStreamerAcct() string {
func (es *ElasticSearch) CreateStreamerAcct(ctx *gin.Context, streameraccts []*dbstruct.EsStreamerAcct) error {
bulk := es.clientMix.Bulk().Index(es.getIndexStreamerAcct()).Refresh("true")
for _, streameracct := range streameraccts {
bulk.Add(elastic.NewBulkCreateRequest().Doc(streameracct))
bulk.Add(elastic.NewBulkCreateRequest().Id(fmt.Sprint(streameracct.Mid)).Doc(streameracct))
}
_, err := bulk.Do(ctx)
return err