From 93d454852866ca4d96424a16b63ab4826a0b0cf3 Mon Sep 17 00:00:00 2001 From: Valentin Schneider Date: Thu, 19 Oct 2017 12:41:31 +0100 Subject: [PATCH] ftrace: Enable caching by default --- trappy/ftrace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trappy/ftrace.py b/trappy/ftrace.py index ae2a8a9d..73cb9f57 100644 --- a/trappy/ftrace.py +++ b/trappy/ftrace.py @@ -68,7 +68,7 @@ class GenericFTrace(BareTrace): dynamic_classes = {} - disable_cache = True + disable_cache = False def __init__(self, name="", normalize_time=True, scope="all", events=[], window=(0, None), abs_window=(0, None)):