We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817998d commit c8bf4c8Copy full SHA for c8bf4c8
packages/cubejs-backend-native/src/python/runtime.rs
@@ -213,7 +213,7 @@ impl PyRuntime {
213
214
let fut_res = match safe_py_fut_poll.catch_unwind().await {
215
Ok(Ok(r)) => Ok(r),
216
- Ok(Err(err)) => Err(CubeError::user(format_python_error(err))),
+ Ok(Err(err)) => Err(CubeError::internal(format_python_error(err))),
217
Err(panic_payload) => Err(CubeError::panic_with_message(
218
panic_payload,
219
"Unexpected panic while polling python future",
0 commit comments