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
WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)).
Canceling this context releases resources associated with it, so code should
call cancel as soon as the operations running in this Context complete:
In the latest release
rocketmq-client-go
sdk (version 2.1.0, thecancel
function is not be called, this will cause memory/resources leak.e.g. in the producer.go, line #244 :
According to the go doc:
The text was updated successfully, but these errors were encountered: