From a6fe62cf13320c8fa71ceb35e354ad9b7795bce5 Mon Sep 17 00:00:00 2001 From: jeromew Date: Sat, 31 Aug 2024 19:13:14 +0200 Subject: [PATCH] Fix redbean OnLogLatency documentation (#1270) The handler is called in the child worker process. --- tool/net/help.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tool/net/help.txt b/tool/net/help.txt index 1be07e8a93a..efb814c3dae 100644 --- a/tool/net/help.txt +++ b/tool/net/help.txt @@ -581,10 +581,10 @@ HOOKS `true`, redbean will close the connection without calling fork. OnLogLatency(reqtimeus:int, contimeus:int) - If this function is defined it'll be called from the main process - each time redbean completes handling of a request, but before the - response is sent. The handler received the time (in µs) since the - request handling and connection handling started. + If this function is defined it'll be called from the child worker + process each time redbean completes the handling of a request, but + before the response is sent. The handler receives the time (in µs) + since the request handling and connection handling started. OnProcessCreate(pid:int, ip:int, port:int, serverip:int, serverport:int) If this function is defined it'll be called from the main process