From 9957d30a84121adf99796860561a5cc73e20141a Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 23 Jan 2023 20:13:19 -0800 Subject: [PATCH] stop including call stack for now It risks blowing up the JSON payload to the driver too much, causing truncation and more flakiness. --- app.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.lua b/app.lua index 20f1fd3..7023471 100644 --- a/app.lua +++ b/app.lua @@ -465,5 +465,6 @@ end -- Test_errors will be a table by test name function record_error_by_test(test_name, err) local err_without_line_number = err:gsub('^[^:]*:[^:]*: ', '') - Test_errors[test_name] = debug.traceback(err_without_line_number) + Test_errors[test_name] = err_without_line_number +--? Test_errors[test_name] = debug.traceback(err_without_line_number) end