From 7e91927278f5bb9ed4cb3ba059e4d888a9696352 Mon Sep 17 00:00:00 2001 From: cdosoftei Date: Tue, 15 Oct 2019 12:37:47 -0400 Subject: [PATCH] [mod_amqp] Properly parse out heartbeat parameter --- src/mod/event_handlers/mod_amqp/mod_amqp_connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/event_handlers/mod_amqp/mod_amqp_connection.c b/src/mod/event_handlers/mod_amqp/mod_amqp_connection.c index 2d8ef8c088..7f56c9579c 100644 --- a/src/mod/event_handlers/mod_amqp/mod_amqp_connection.c +++ b/src/mod/event_handlers/mod_amqp/mod_amqp_connection.c @@ -220,7 +220,7 @@ switch_status_t mod_amqp_connection_create(mod_amqp_connection_t **conn, switch_ if (interval && interval > 0) { port = interval; } - } else if (!strncmp(var, "heartbeat", 4)) { + } else if (!strncmp(var, "heartbeat", 9)) { int interval = atoi(val); if (interval && interval > 0) { heartbeat = interval;