From 79f9e44c0b1251d3c46e21350a12c567d9f215dd Mon Sep 17 00:00:00 2001 From: bugclerk <40872210+bugclerk@users.noreply.github.com> Date: Tue, 3 Sep 2024 08:43:17 -0700 Subject: [PATCH] Do not use raw_result for core.get_jobs output in debug (#202) (#221) (cherry picked from commit a1782042e2f07ce9c059e0d462d0461afbc6b0de) Co-authored-by: Andrew Walker --- ixdiagnose/plugins/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ixdiagnose/plugins/jobs.py b/ixdiagnose/plugins/jobs.py index af07052..1390c68 100644 --- a/ixdiagnose/plugins/jobs.py +++ b/ixdiagnose/plugins/jobs.py @@ -7,5 +7,5 @@ class CoreGetJobs(Plugin): name = 'jobs' metrics = [ - MiddlewareClientMetric('jobs', [MiddlewareCommand('core.get_jobs')]), + MiddlewareClientMetric('jobs', [MiddlewareCommand('core.get_jobs', [], {'extra': {'raw_result': False}})]), ]