mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Fix crash on plugin execution error.
If a plugin failed to execute, pypmmn did not properly report the error and crash. This resolves this bug.
This commit is contained in:
parent
c29d25a89f
commit
c07cf6891f
@ -113,7 +113,7 @@ class CmdHandler(object):
|
||||
LOG.debug('Executing %r' % cmd)
|
||||
output = Popen(cmd, stdout=PIPE).communicate()[0]
|
||||
except OSError, exc:
|
||||
LOG.exception()
|
||||
LOG.exception("Unable to execute the command %r" % cmd)
|
||||
self.put_fun("# ERROR: %s\n" % exc)
|
||||
return
|
||||
self.put_fun(output)
|
||||
|
Loading…
Reference in New Issue
Block a user