We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
sendInitRuntimeDoneLogEvent()
defer func() { sendInitRuntimeDoneLogEvent(execCtx, sbInfoFromInit.SandboxType, runtimeDoneStatus) }()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The "Init Duration" reported by the RIE is much too small. It is taken before the actual language runtime is even started:
Instead, the end of the Init phase should be recorded when the
sendInitRuntimeDoneLogEvent()
is posted:The text was updated successfully, but these errors were encountered: