Skip to content

Commit f787817

Browse files
committed
fix message
1 parent 3cc9b14 commit f787817

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

opentelemetry-sdk/src/logs/log_processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ impl BatchLogProcessor {
397397
// out (i.e exit the thread)
398398
otel_debug!(
399399
name: "BatchLogProcessor.ThreadExiting",
400-
reason = "MessageReceiverDisconnected"
400+
reason = "MessageSenderDisconnected"
401401
);
402402
break;
403403
}

opentelemetry-sdk/src/metrics/periodic_reader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ impl PeriodicReader {
260260
// out (i.e exit the thread)
261261
otel_debug!(
262262
name: "PeriodReaderThreadExiting",
263-
reason = "MessageReceiverDisconnected"
263+
reason = "MessageSenderDisconnected"
264264
);
265265
break;
266266
}

opentelemetry-sdk/src/trace/span_processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ impl BatchSpanProcessor {
323323
// out (i.e exit the thread)
324324
otel_debug!(
325325
name: "BatchSpanProcessor.ThreadExiting",
326-
reason = "MessageReceiverDisconnected"
326+
reason = "MessageSenderDisconnected"
327327
);
328328
break;
329329
}

0 commit comments

Comments
 (0)