-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
Fix for kafka log values #6101
Fix for kafka log values #6101
Conversation
Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually? |
@anx-mr Can you share some more background on this? |
The arguments are passed as slice (v) instead of a argument list (v...) which results in a wrong output in the log. `2018/01/19 08:52:06.563449 log.go:36: INFO client/brokers registered new broker #[[3 %!d(string=server03.local:9093)]] at %!s(MISSING) 2018/01/19 08:52:06.563455 log.go:36: INFO client/brokers registered new broker #[[6 %!d(string=server06.local:9093)]] at %!s(MISSING) 2018/01/19 08:52:06.563492 log.go:36: INFO kafka message: [Successfully initialized new client] 2018/01/19 08:52:06.563663 log.go:36: INFO producer/broker/[[6]] starting up 2018/01/19 08:52:06.563679 log.go:36: INFO producer/broker/[[6 %!d(string=topic1) 0]] state change to [open] on %!s(MISSING)/%!d(MISSING) 2018/01/19 08:52:06.666677 log.go:36: INFO Connected to broker at [[server06.local:9093 %!s(int32=6)]] (registered as #%!d(MISSING)) 2018/01/19 08:52:11.335943 log.go:36: INFO producer/broker/[[7]] starting up 2018/01/19 08:52:11.335995 log.go:36: INFO producer/broker/[[7 %!d(string=topic1) 1]] state change to [open] on %!s(MISSING)/%!d(MISSING) 2018/01/19 08:52:11.456625 log.go:36: INFO Connected to broker at [[server07.local:9093 %!s(int32=7)]] (registered as #%!d(MISSING))` |
jenkins, test it |
@urso We should probably forward port to this master and 6.2? |
Closed, new pull request for master: #6430 |
No description provided.