From 9c4e1da5e7a27dc2f1ce06122148c908fe346452 Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Sun, 10 May 2020 08:33:51 -0700 Subject: DataFromSuperUser is expected to be a boolean in the server --- tools/benchmark-conf-to-json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/benchmark-conf-to-json.py') diff --git a/tools/benchmark-conf-to-json.py b/tools/benchmark-conf-to-json.py index 033a0f94..a2e3547c 100755 --- a/tools/benchmark-conf-to-json.py +++ b/tools/benchmark-conf-to-json.py @@ -208,7 +208,7 @@ if __name__ == '__main__': if len(values) >= 14: bench['PointerBits'] = int(values[13]) if len(values) >= 15: - bench['DataFromSuperUser'] = int(values[14]) + bench['DataFromSuperUser'] = int(values[14]) != 0 if len(values) >= 16: bench['PhysicalMemoryInMiB'] = int(values[15]) if len(values) >= 17: -- cgit v1.2.3