You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#888 change reference count of shared rmqClient into sync.Once body, which is buggy. The client will be shutdown once any consumer or producer call Shutdown, but it may be still used by other consumer or producer.
The problem mentioned in #888 will not happen, since the start of client is called in sync.Once:
#888 change reference count of shared rmqClient into sync.Once body, which is buggy. The client will be shutdown once any consumer or producer call Shutdown, but it may be still used by other consumer or producer.
The problem mentioned in #888 will not happen, since the start of client is called in sync.Once:
rocketmq-client-go/consumer/push_consumer.go
Line 161 in 6c77b67
rocketmq-client-go/consumer/consumer.go
Line 285 in 6c77b67
Simply revert #888 will fix the issue.
The text was updated successfully, but these errors were encountered: