Skip to content

Commit c8bf4c8

Browse files
committed
chore: wip
1 parent 817998d commit c8bf4c8

File tree

1 file changed

+1
-1
lines changed
  • packages/cubejs-backend-native/src/python

1 file changed

+1
-1
lines changed

packages/cubejs-backend-native/src/python/runtime.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ impl PyRuntime {
213213

214214
let fut_res = match safe_py_fut_poll.catch_unwind().await {
215215
Ok(Ok(r)) => Ok(r),
216-
Ok(Err(err)) => Err(CubeError::user(format_python_error(err))),
216+
Ok(Err(err)) => Err(CubeError::internal(format_python_error(err))),
217217
Err(panic_payload) => Err(CubeError::panic_with_message(
218218
panic_payload,
219219
"Unexpected panic while polling python future",

0 commit comments

Comments
 (0)