From cbe7c89465b0c50b912c183a90340c1e090bd800 Mon Sep 17 00:00:00 2001 From: Austin Clark Date: Tue, 10 Nov 2015 09:20:22 -0700 Subject: [PATCH] Edit stackviz-export export_tempest_details to save logs export_tempest_details (responsible for generating the details file in the stackviz-export process) had strip_details set to True, discarding all pertinent log info necessary for a full details view. This changes the strip_details method parameter to the default, False. Change-Id: I293ccd15e6c0e7b1ba5f7ee9be12584e01d398b6 --- stackviz/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stackviz/export.py b/stackviz/export.py index ebffa6f..5a99bcd 100644 --- a/stackviz/export.py +++ b/stackviz/export.py @@ -60,7 +60,7 @@ def export_tempest_raw(stream, output_stream): def export_tempest_details(stream, output_stream): - converted = tempest_subunit.convert_stream(stream, strip_details=True) + converted = tempest_subunit.convert_stream(stream) output = {} for entry in converted: