1
0

GODT-1482: Comment or mitigate panics, unlock cache when needed.

This commit is contained in:
Jakub
2021-12-21 11:34:21 +01:00
committed by Jakub Cuth
parent e9c05c5a6b
commit df601ecbbd
15 changed files with 312 additions and 51 deletions

View File

@ -67,6 +67,10 @@ func (cacher *MsgCachePool) newJob(messageID string) {
}
func (cacher *MsgCachePool) start() {
if cacher.started {
return
}
cacher.started = true
go func() {