Module: kamailio
Branch: master
Commit: 45874202fd76f70c601b7ee7e22e950d06968d87
URL:
https://github.com/kamailio/kamailio/commit/45874202fd76f70c601b7ee7e22e950…
Author: Henning Westerholt <hw(a)kamailio.org>
Committer: Henning Westerholt <hw(a)kamailio.org>
Date: 2018-07-23T22:58:23+02:00
http_async_client: fix doc example regarding http_req_id
---
Modified: src/modules/http_async_client/doc/http_async_client_admin.xml
---
Diff:
https://github.com/kamailio/kamailio/commit/45874202fd76f70c601b7ee7e22e950…
Patch:
https://github.com/kamailio/kamailio/commit/45874202fd76f70c601b7ee7e22e950…
---
diff --git a/src/modules/http_async_client/doc/http_async_client_admin.xml
b/src/modules/http_async_client/doc/http_async_client_admin.xml
index 6752b12d04..605964e268 100644
--- a/src/modules/http_async_client/doc/http_async_client_admin.xml
+++ b/src/modules/http_async_client/doc/http_async_client_admin.xml
@@ -358,10 +358,10 @@ $http_req(suspend) = 0;
http_async_query("https://example.com/test.php", "HTTP_REPLY");
-xlog("L_INFO", "Query id: $http_query_id");
+xlog("L_INFO", "Query id: $http_req_id");
...
route[HTTP_REPLY] {
-xlog("L_INFO", "received reply for query $http_query_id\n");
+xlog("L_INFO", "received reply for query $http_req_id\n");
}
...
</programlisting>