From a5badad8e94a91731d40392436ff66899400e052 Mon Sep 17 00:00:00 2001 From: Brendan Jackman Date: Thu, 12 Oct 2017 17:58:45 +0100 Subject: [PATCH] trace-cmd: Add missing very_slow decorator to stop method --- wa/instrumentation/trace-cmd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wa/instrumentation/trace-cmd.py b/wa/instrumentation/trace-cmd.py index feedf807..0943a56c 100644 --- a/wa/instrumentation/trace-cmd.py +++ b/wa/instrumentation/trace-cmd.py @@ -199,6 +199,7 @@ class TraceCmdInstrument(Instrument): def start(self, context): self.collector.start() + @very_slow def stop(self, context): self.collector.stop()