Skip to content

Commit

Permalink
[chore][exporter/clickhouseexporter] Fix config comment (#31086)
Browse files Browse the repository at this point in the history
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
Just noticed the description for the `password` config option references
username instead of password.
  • Loading branch information
crobert-1 authored Feb 22, 2024
1 parent 51289a1 commit 5337455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporter/clickhouseexporter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Config struct {
Endpoint string `mapstructure:"endpoint"`
// Username is the authentication username.
Username string `mapstructure:"username"`
// Username is the authentication password.
// Password is the authentication password.
Password configopaque.String `mapstructure:"password"`
// Database is the database name to export.
Database string `mapstructure:"database"`
Expand Down

0 comments on commit 5337455

Please sign in to comment.