Module: kamailio
Branch: master
Commit: 557bbe3042b31b8087d40a41b9d304e731ce06b9
URL:
https://github.com/kamailio/kamailio/commit/557bbe3042b31b8087d40a41b9d304e…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-08-08T17:19:47+02:00
http_async_client: named addition processes http async worker
- reflects better the module
---
Modified: src/modules/http_async_client/http_async_client_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/557bbe3042b31b8087d40a41b9d304e…
Patch:
https://github.com/kamailio/kamailio/commit/557bbe3042b31b8087d40a41b9d304e…
---
diff --git a/src/modules/http_async_client/http_async_client_mod.c
b/src/modules/http_async_client/http_async_client_mod.c
index c1f0f1d1df..ed52110d04 100644
--- a/src/modules/http_async_client/http_async_client_mod.c
+++ b/src/modules/http_async_client/http_async_client_mod.c
@@ -346,7 +346,7 @@ static int child_init(int rank)
LM_ERR("failed to initialize worker process: %d\n", i);
return -1;
}
- pid=fork_process(PROC_RPC, "Http Worker", 1);
+ pid=fork_process(PROC_RPC, "Http Async Worker", 1);
if (pid<0)
return -1; /* error */
if(pid==0) {