Skip to content

Commit c489c63

Browse files
authored
[BugFix] Make the error message truncated not so aggressive (#2876)
Fixes #2864 Signed-off-by: acezen <[email protected]>
1 parent e9af91a commit c489c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coordinator/gscoordinator/op_executor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _generate_runstep_request(session_id, dag_def, dag_bodies):
111111
# TODO: make the stacktrace separated from normal error messages
112112
# Too verbose.
113113
if len(e.details()) > 3072: # 3k bytes
114-
msg = f"{e.details()[:30]} ... [truncated]"
114+
msg = f"{e.details()[:256]} ... [truncated]"
115115
else:
116116
msg = e.details()
117117
raise AnalyticalEngineInternalError(msg)

0 commit comments

Comments
 (0)