Add more specific log when exiting BackGroundGC goroutine (#15273)

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
pull/15484/head
XuanYang-cn 2022-02-07 16:55:44 +08:00 committed by GitHub
parent d830791e4f
commit 5eef9886b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ func (node *DataNode) BackGroundGC(vChannelCh <-chan string) {
log.Info("GC flowgraph", zap.String("vChanName", vchanName))
node.releaseFlowgraph(vchanName)
case <-node.ctx.Done():
log.Info("DataNode ctx done")
log.Warn("DataNode context done, exiting background GC")
return
}
}