-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers
Description
Describe the bug
This code is marked as an internal error (meaning it should not happen unless there is a bug):
datafusion/datafusion/physical-plan/src/stream.rs
Lines 126 to 131 in 05bb569
| // This should only occur if the task is | |
| // cancelled, which would only occur if | |
| // the JoinSet were aborted, which in turn | |
| // would imply that the receiver has been | |
| // dropped and this code is not running | |
| return Some(internal_err!("Non Panic Task error: {e}")); |
However, we have clear evidence that it can happen when the tokio runtime is shutdown / cancelled in this ticket
To Reproduce
Expected behavior
I expect the error to be an "execution error" not an internal error (just switch the error type)
Additional context
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers