Skip to content

Commit

Permalink
raise fallback exception from previous err
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Sep 19, 2024
1 parent 84d7110 commit d051428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/pandas/fast_slow_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ def _fast_slow_function_call(
if _env_get_bool("CUDF_PANDAS_FAIL_ON_FALLBACK", False):
raise ProxyFallbackError(
f"The operation failed with cuDF, the reason was {type(err)}: {err}."
)
) from err
with nvtx.annotate(
"EXECUTE_SLOW",
color=_CUDF_PANDAS_NVTX_COLORS["EXECUTE_SLOW"],
Expand Down

0 comments on commit d051428

Please sign in to comment.