tucura

Results 7 comments of tucura

Hello, i ported the current version to chrome. You can find the changes [here](https://github.com/Tucura/play-with/tree/chrome). Things I've done(see https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Chrome_incompatibilities for differences between ff and chrome): - Converting .svg icons to png...

Hello, this seems still to be an issue. I could reproduce this goroutine leak by using the example of the readme and printing the stacktrace before and after closing the...

For me this is not a fix of the problem. This does not change the fact that even initializing one publisher and closing it will not stop all started goroutines...

Ah thank you for your example @lmb1113 . We have a different use case, we open a lot of publishers because each client gets its own queue and exchange for...

Hello, dont want to necro bump but @wagslane should i open a new issue for this? Or can this issue be reopened?

Hello, > So all resources are not necessarily expected to be cleaned up when you close the publisher, you would need to also close the underlying connection itself. Imo this...

pretty ugly script for testing, but maybe helpful ```go package main import ( "fmt" "github.com/wagslane/go-rabbitmq" "golang.org/x/net/context" "os" "os/signal" "runtime" "sync" "syscall" "time" ) var rabbitConn *rabbitmq.Conn func main() { lifetime,...