Skip to content

Commit d1fea1d

Browse files
author
Rafał Hibner
committed
Make inputReceived error not fatal
1 parent 4b55ea6 commit d1fea1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/acero/sorted_merge_node.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ class SortedMergeNode : public ExecNode {
559559
out_b.index = batches_produced++;
560560
Status st = output_->InputReceived(this, std::move(out_b));
561561
if (!st.ok()) {
562-
ARROW_LOG(FATAL) << "Error in output_::InputReceived: " << st.ToString();
562+
ARROW_LOG(ERROR) << "Error in output_::InputReceived: " << st.ToString();
563563
EndFromProcessThread(std::move(st));
564564
}
565565
} else {

0 commit comments

Comments
 (0)