From: Marc Fournier Date: Wed, 11 Mar 2015 21:12:16 +0000 (+0100) Subject: amqp: disable reconnection delaying feature by default X-Git-Tag: collectd-5.5.0~66 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=4fc052c0ab3545bca9c8cfbf3247ff22f6fe58f9 amqp: disable reconnection delaying feature by default --- diff --git a/src/amqp.c b/src/amqp.c index 187582c4..cf2a448a 100644 --- a/src/amqp.c +++ b/src/amqp.c @@ -940,7 +940,7 @@ static int camqp_config_connection (oconfig_item_t *ci, /* {{{ */ conf->password = NULL; conf->exchange = NULL; conf->routing_key = NULL; - conf->connection_retry_delay = 60; + conf->connection_retry_delay = 0; /* publish only */ conf->delivery_mode = CAMQP_DM_VOLATILE;