-
Notifications
You must be signed in to change notification settings - Fork 109
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
The "Init Duration" reported by the RIE is much too small. It is taken before the actual language runtime is even started:
initStart, initEnd := InitHandler(sandbox, functionVersion, timeout, bs)
Instead, the end of the Init phase should be recorded when the sendInitRuntimeDoneLogEvent()
is posted:
defer func() {
sendInitRuntimeDoneLogEvent(execCtx, sbInfoFromInit.SandboxType, runtimeDoneStatus)
}()
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers