Skip to content

Commit

Permalink
change configuration name in log message (open-telemetry#32164)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeylanzman committed Apr 4, 2024
1 parent 5315179 commit 18ef33f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exporter/coralogixexporter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ func (c *Config) Validate() error {
return fmt.Errorf("`domain` or `traces.endpoint` or `metrics.endpoint` or `logs.endpoint` not specified, please fix the configuration")
}
if c.PrivateKey == "" {
return fmt.Errorf("`privateKey` not specified, please fix the configuration")
return fmt.Errorf("`private_key` not specified, please fix the configuration")
}
if c.AppName == "" {
return fmt.Errorf("`appName` not specified, please fix the configuration")
return fmt.Errorf("`application_name` not specified, please fix the configuration")
}

// check if headers exists
Expand Down

0 comments on commit 18ef33f

Please sign in to comment.