-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Add producer folder to pkg/kafka/config #957
Conversation
plugin/storage/kafka/factory.go
Outdated
} | ||
|
||
// Initialize implements storage.Factory | ||
func (f *Factory) Initialize(metricsFactory metrics.Factory, logger *zap.Logger) error { | ||
f.metricsFactory, f.logger = metricsFactory, logger | ||
logger.Info("Kafka storage configuration", | ||
zap.Any("producer config", f.config), | ||
logger.Info("Kafka producer builder", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/Kafka producer builder/Kafka factory
Codecov Report
@@ Coverage Diff @@
## master #957 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 136 136
Lines 6322 6322
=====================================
Hits 6322 6322
Continue to review full report at Codecov.
|
plugin/storage/kafka/factory.go
Outdated
logger.Info("Kafka producer builder", | ||
zap.Any("producer builder", f.Builder), | ||
logger.Info("Kafka factory", | ||
zap.Any("producer factory", f.Builder), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was fine as is
4f7729b
to
9575666
Compare
Signed-off-by: Davit Yeghshatyan <[email protected]>
9575666
to
956cc4a
Compare
Signed-off-by: Davit Yeghshatyan [email protected]
Which problem is this PR solving?
Short description of the changes