Module: kamailio
Branch: master
Commit: d5076b557728b3f9d80df391ae71e2eab2c896dc
URL:
https://github.com/kamailio/kamailio/commit/d5076b557728b3f9d80df391ae71e2e…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2024-07-14T18:56:20+02:00
evrexec: remove unnecessary safety exit loop
---
Modified: src/modules/evrexec/evrexec_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/d5076b557728b3f9d80df391ae71e2e…
Patch:
https://github.com/kamailio/kamailio/commit/d5076b557728b3f9d80df391ae71e2e…
---
diff --git a/src/modules/evrexec/evrexec_mod.c b/src/modules/evrexec/evrexec_mod.c
index 3fb99535a0a..7df75654aa0 100644
--- a/src/modules/evrexec/evrexec_mod.c
+++ b/src/modules/evrexec/evrexec_mod.c
@@ -325,10 +325,6 @@ void evrexec_process_socket(evrexec_task_t *it, int idx)
}
memset(&_evrexec_info, 0, sizeof(evrexec_info_t));
}
- /* avoid exiting the process */
- while(1) {
- sleep(3600);
- }
}
/**