[mod_amqp] Properly parse out heartbeat parameter

This commit is contained in:
cdosoftei 2019-10-15 12:37:47 -04:00
parent 77cd699000
commit 7e91927278
No known key found for this signature in database
GPG Key ID: 565390F4CBD2DB84
1 changed files with 1 additions and 1 deletions

View File

@ -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;