[sr-dev] git:master:fb2eee3e: kazoo : fix routing of reply events

Daniel-Constantin Mierla miconda at gmail.com
Mon Aug 16 20:08:16 CEST 2021


Module: kamailio
Branch: master
Commit: fb2eee3e175040fef5e76cbed11430976f62df32
URL: https://github.com/kamailio/kamailio/commit/fb2eee3e175040fef5e76cbed11430976f62df32

Author: Alan Evans <alan at kageds.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2021-08-16T20:08:11+02:00

kazoo : fix routing of reply events

success events should be routed to onreply_route[]
failure events should be routed to failure_route[]

---

Modified: src/modules/kazoo/kz_amqp.c

---

Diff:  https://github.com/kamailio/kamailio/commit/fb2eee3e175040fef5e76cbed11430976f62df32.diff
Patch: https://github.com/kamailio/kamailio/commit/fb2eee3e175040fef5e76cbed11430976f62df32.patch

---

diff --git a/src/modules/kazoo/kz_amqp.c b/src/modules/kazoo/kz_amqp.c
index 8076315dfd..5685f5a845 100644
--- a/src/modules/kazoo/kz_amqp.c
+++ b/src/modules/kazoo/kz_amqp.c
@@ -2498,24 +2498,24 @@ void kz_amqp_fire_connection_event(char *event, char* host, char* zone)
 
 void kz_amqp_cb_ok(kz_amqp_cmd_ptr cmd)
 {
-	int n = route_lookup(&main_rt, cmd->cb_route);
+	int n = route_lookup(&onreply_rt, cmd->cb_route);
 	if(n==-1) {
 		/* route block not found in the configuration file */
 		return;
 	}
-	struct action *a = main_rt.rlist[n];
+	struct action *a = onreply_rt.rlist[n];
 	tmb.t_continue(cmd->t_hash, cmd->t_label, a);
 	ksr_msg_env_reset();
 }
 
 void kz_amqp_cb_error(kz_amqp_cmd_ptr cmd)
 {
-	int n = route_lookup(&main_rt, cmd->err_route);
+	int n = route_lookup(&failure_rt, cmd->err_route);
 	if(n==-1) {
 		/* route block not found in the configuration file */
 		return;
 	}
-	struct action *a = main_rt.rlist[n];
+	struct action *a = failure_rt.rlist[n];
 	tmb.t_continue(cmd->t_hash, cmd->t_label, a);
 	ksr_msg_env_reset();
 }




More information about the sr-dev mailing list