You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We hit a lock in the restart loop that is meant to prevent multiple restarts from occurring simultaneously... but b/c we never completed that init task in step 1, it is never released. As far as it's concerned, 2 restarts are happening simultaneously.
This was actually related to a fix already made by @alrod -- it took a while to realize this. Dupe of #7983, which has already been fixed and deployed. The incident mentioned above happened in 4.1.0 -- which was before this was deployed in 4.2.0.
We have a deadlock in the language worker restart flow.
TaskCompletionSource
to be completed):_workerInitTask
.This can cause the process to effectively hang as it's waiting for these two events to complete.
Note: In some other flows, we do explicitly set the
_workerInitTask
-- https://github.com/Azure/azure-functions-host/blob/dev/src/WebJobs.Script.Grpc/Channel/GrpcWorkerChannel.cs#L815The text was updated successfully, but these errors were encountered: