Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Updated the `source send cancelled` error message to point towards possible causes.
Comment thread
clementd-dd marked this conversation as resolved.
This error usually happens either because a pipeline is shutting down or because
of backpressure.

authors: clementd-dd
2 changes: 1 addition & 1 deletion lib/vector-core/src/source_sender/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl Drop for UnsentEventCount {
let _enter = self.span.enter();
internal_event::emit(ComponentEventsDropped::<UNINTENTIONAL> {
count: self.count,
reason: "Source send cancelled.",
reason: "Source send interrupted mid-flight; pipeline may be overloaded or shutting down.",
});
}
}
Expand Down
Loading