Skip to content

Commit

Permalink
[receiver/k8sclusterreceiver] fix typo (open-telemetry#29632)
Browse files Browse the repository at this point in the history
Fixing a typo in error log text.
  • Loading branch information
hiwayama authored Dec 4, 2023
1 parent 80e54de commit 2367c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion receiver/k8sclusterreceiver/watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func newResourceWatcher(set receiver.CreateSettings, cfg *Config, metadataStore
func (rw *resourceWatcher) initialize() error {
client, err := rw.makeClient(rw.config.APIConfig)
if err != nil {
return fmt.Errorf("Failed to create Kubernnetes client: %w", err)
return fmt.Errorf("Failed to create Kubernetes client: %w", err)
}
rw.client = client

Expand Down

0 comments on commit 2367c0e

Please sign in to comment.