From b26be28df9fd4db2106cc2a557966c9d2a7345d9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 16 Mar 2019 08:50:20 +0100 Subject: Adding upstream version 1.13.0. Signed-off-by: Daniel Baumann --- collectors/python.d.plugin/beanstalk/beanstalk.chart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'collectors/python.d.plugin/beanstalk/beanstalk.chart.py') diff --git a/collectors/python.d.plugin/beanstalk/beanstalk.chart.py b/collectors/python.d.plugin/beanstalk/beanstalk.chart.py index ed945a781..aa85a9f0a 100644 --- a/collectors/python.d.plugin/beanstalk/beanstalk.chart.py +++ b/collectors/python.d.plugin/beanstalk/beanstalk.chart.py @@ -10,7 +10,7 @@ except ImportError: BEANSTALKC = False from bases.FrameworkServices.SimpleService import SimpleService -from bases.loaders import safe_load +from bases.loaders import load_yaml ORDER = [ @@ -233,7 +233,7 @@ class Service(SimpleService): return beanstalkc.Connection(host=host, port=port, connect_timeout=timeout, - parse_yaml=safe_load) + parse_yaml=load_yaml) except beanstalkc.SocketError as error: self.error('Connection to {0}:{1} failed: {2}'.format(host, port, error)) return None -- cgit v1.2.3