stop including call stack for now

It risks blowing up the JSON payload to the driver too much, causing
truncation and more flakiness.
This commit is contained in:
Kartik K. Agaram 2023-01-23 20:13:19 -08:00
parent 2f1ec093ba
commit 9957d30a84
1 changed files with 2 additions and 1 deletions

View File

@ -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