summaryrefslogtreecommitdiffstats
path: root/plugins.d
diff options
context:
space:
mode:
authorIlya <ilyamaschenko@gmail.com>2017-06-15 22:30:10 +0900
committerIlya <ilyamaschenko@gmail.com>2017-06-15 22:30:10 +0900
commitb55c480252db4362032fa683f8fa12f7b5a5f94d (patch)
treebbb892e67cd4c1c02191e7a878a4e209173b2c96 /plugins.d
parent532a4ca94d7f1bc396c7a31e6b3d6394068d0b2d (diff)
python.d.plugin: plugin crashes if exception raises on job init fixed
Diffstat (limited to 'plugins.d')
-rwxr-xr-xplugins.d/python.d.plugin2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins.d/python.d.plugin b/plugins.d/python.d.plugin
index e74c79cfa7..03c156f41d 100755
--- a/plugins.d/python.d.plugin
+++ b/plugins.d/python.d.plugin
@@ -310,7 +310,7 @@ class PythonCharts(object):
("/" + str(name) if name is not None else "") +
": cannot start job: '" +
str(e))
- return None
+ continue
else:
# set chart_name (needed to plot run time graphs)
job.chart_name = module.__name__