From 744a126151022810bf9f4db89a74acaf6a6f387e Mon Sep 17 00:00:00 2001 From: Ilya Mashchenko Date: Mon, 16 Sep 2019 11:54:32 +0300 Subject: [PATCH] single job build fix (#6856) --- collectors/python.d.plugin/python.d.plugin.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collectors/python.d.plugin/python.d.plugin.in b/collectors/python.d.plugin/python.d.plugin.in index 5b8b50a673..bd93b04e5d 100644 --- a/collectors/python.d.plugin/python.d.plugin.in +++ b/collectors/python.d.plugin/python.d.plugin.in @@ -197,7 +197,7 @@ class ModuleConfig: return [v for v in self.config if isinstance(self.config.get(v), dict)] def single_job(self): - return [self.create_job(self.name)] + return [self.create_job(self.name, self.config)] def multi_job(self): return [self.create_job(n, self.config[n]) for n in self.job_names()]