Skip to content

Commit e75bc0d

Browse files
Fix CI errors
Co-authored-by: Thomas <thomasqueirozb@gmail.com>
1 parent 95ab76a commit e75bc0d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

changelog.d/24708_log_error.fix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ The `opentelemetry` source now logs an error if it fails to start up or during r
22
This can happen when the configuration is invalid, for example trying to bind to the wrong
33
IP or when hitting the open file limit.
44

5-
author: fbs
5+
authors: fbs

src/sources/opentelemetry/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ impl SourceConfig for OpentelemetryConfig {
357357
self.http.keepalive.clone(),
358358
)
359359
.map_err(|error| {
360-
error!(message = "OpenTelemetry HTTP source failed. Terminating", %error);
360+
error!(message = "OpenTelemetry HTTP source failed. Terminating.", %error);
361361
});
362362

363363
Ok(join(grpc_source, http_source).map(|_| Ok(())).boxed())

0 commit comments

Comments
 (0)