Module: kamailio Branch: 5.0 Commit: 84f1f516fa4d62ba556d67006288af8c018b0dd2 URL: https://github.com/kamailio/kamailio/commit/84f1f516fa4d62ba556d67006288af8c...
Author: Henning Westerholt hw@kamailio.org Committer: Henning Westerholt hw@kamailio.org Date: 2018-07-23T23:00:48+02:00
http_async_client: fix doc example regarding http_req_id
(cherry picked from commit 45874202fd76f70c601b7ee7e22e950d06968d87)
---
Modified: src/modules/http_async_client/doc/http_async_client_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/84f1f516fa4d62ba556d67006288af8c... Patch: https://github.com/kamailio/kamailio/commit/84f1f516fa4d62ba556d67006288af8c...
---
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 8629edabac..7131a71dfb 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>