This commit is contained in:
ziming 2025-08-01 11:53:55 +08:00
parent 0fe1508d9e
commit 6bfd3fe7fd
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import (
func (s *VoucherService) GetRetryNotifyConfig() *rdsmq.ConsumeConfig {
queue := s.bc.RdsMQ.GetWechatRetry()
queue := s.bc.RdsMQ.GetRetryNotify()
if queue == nil {
return nil
}
@ -25,7 +25,7 @@ func (s *VoucherService) GetRetryNotifyConfig() *rdsmq.ConsumeConfig {
NumWorkers: queue.NumWorkers,
WaitTime: queue.GetWaitTime().AsDuration(),
RetryNum: queue.RetryNum,
Fn: s.HandleWechatRetry,
Fn: s.HandleRetryNotify,
Logger: s.logHelper,
}
}