We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The error message are generate intermitantly lways after call producer.Stop()
(localhost:4150) IO error - EOF
The following code reproduces the problem:
package main import ( "bitbucket.org/tpapageorgiou/mytest/broker" log "github.com/Sirupsen/logrus" "github.com/nsqio/go-nsq" ) func main() { config := nsq.NewConfig() buffer := []byte{`{"test": "123"}`} for i := 0; i < 100; i++ { producer, _ := nsq.NewProducer("localhost:4150", config) producer.SetLogger(broker.NewNSQLogrusLoggerAtLevel(log.DebugLevel)) err := producer.Publish("test_topic", buffer) if err != nil { log.Error(err) } producer.Stop() } }
I am using:
The text was updated successfully, but these errors were encountered:
Thi is a diplicated of #184
Sorry, something went wrong.
This is indeed a duplicate, but it was thought to have been fixed in #201 which was included in go-nsq v1.0.6
No branches or pull requests
The error message are generate intermitantly lways after call producer.Stop()
(localhost:4150) IO error - EOF
The following code reproduces the problem:
I am using:
The text was updated successfully, but these errors were encountered: