From 856de80d943b39ff2950617d12b8c92581770fd9 Mon Sep 17 00:00:00 2001 From: themylogin Date: Mon, 26 Aug 2024 17:55:27 +0200 Subject: [PATCH] Fix `core.get_jobs` output (cherry picked from commit 25b346cbaeba5e8b0220faae343adfea126d2726) --- 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 1390c68..fe777b9 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', [], {'extra': {'raw_result': False}})]), + MiddlewareClientMetric('jobs', [MiddlewareCommand('core.get_jobs', [[], {'extra': {'raw_result': False}}])]), ]