!303 fix:加入异步注解配置后redis消费者不能正常消费

Merge pull request !303 from zy_2021/master
This commit is contained in:
芋道源码 2022-11-19 10:50:28 +00:00 committed by Gitee
commit 277cbce58f
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -78,7 +78,6 @@ public class YudaoMQAutoConfiguration {
* Redis Stream xreadgroup 命令https://www.geek-book.com/src/docs/redis/redis/redis.io/commands/xreadgroup.html
*/
@Bean(initMethod = "start", destroyMethod = "stop")
@Async // 异步化可降低 5 秒左右的启动时间
public StreamMessageListenerContainer<String, ObjectRecord<String, String>> redisStreamMessageListenerContainer(
RedisMQTemplate redisMQTemplate, List<AbstractStreamMessageListener<?>> listeners) {
RedisTemplate<String, ?> redisTemplate = redisMQTemplate.getRedisTemplate();