From 8f03ba10e62dbbed36bf846f53f29ff8d11fdfed Mon Sep 17 00:00:00 2001 From: Kajetan Puchalski Date: Wed, 5 Apr 2023 15:03:28 +0100 Subject: [PATCH] lisa.wa: Fix getting jobs in WACollectorBase FIX The 'self' in WACollectorBase refers to the WACollectorBase and not the parent WAOutput, currently causing get_collector to crash because it can't find the _jobs property. This looks like an omission from the recent wa.py changes so this commit just fixes the property being accessed. --- lisa/wa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisa/wa.py b/lisa/wa.py index 2a6479aa0..c7d4336a7 100644 --- a/lisa/wa.py +++ b/lisa/wa.py @@ -423,7 +423,7 @@ class WACollectorBase(StatsProp, Loggable, abc.ABC): dfs = [ self._add_output_info(wa_output, name, df) - for name, (wa_output, jobs) in self._jobs.items() + for name, (wa_output, jobs) in self.wa_output._jobs.items() for df in [ load_df(job) for job in jobs -- GitLab