aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/input_data_parser.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2021-06-11 10:10:18 +0200
committerTibor Frank <tifrank@cisco.com>2021-06-11 10:31:09 +0200
commit4255e5ea90db6f0c2e4a106ff8cc6dc734ac5422 (patch)
tree3def09a117fa1dda7dce6f66402e3720350b4c70 /resources/tools/presentation/input_data_parser.py
parentb623785eb9ecaf0657e8f6ca6898dabdc5381128 (diff)
PAL: reduce amount of data
Change-Id: If5713c01e73db72e46a863c7499cb437892a2d97 Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r--resources/tools/presentation/input_data_parser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py
index d108d09e84..364cdbdbad 100644
--- a/resources/tools/presentation/input_data_parser.py
+++ b/resources/tools/presentation/input_data_parser.py
@@ -675,7 +675,8 @@ class ExecutionChecker(ResultVisitor):
oper = {
u"host": host,
u"socket": sock,
- u"runtime": runtime,
+ # Needed for json converter, enable when 'threads' is gone.
+ # u"runtime": runtime,
u"threads": OrderedDict({idx: list() for idx in range(threads_nr)})
}