Skip to content

Commit

Permalink
Merged PR 688231: Add ChooseWorkerIpc to the list of ChooseWorker dis…
Browse files Browse the repository at this point in the history
…patchers

When we do not find an available worker for an IPC pips, we were inlining ChooseWorkerIpc step and causing a stackoverflow exception. We now add ChooseWorkerIpc to the list of chooseworker dispatchers to avoid inlining.
  • Loading branch information
semihokur committed Nov 10, 2022
1 parent 09af602 commit 2a109b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static class DispatcherKindHelpers
/// </summary>
public static bool IsChooseWorker(this DispatcherKind kind)
{
return kind == DispatcherKind.ChooseWorkerLight || kind == DispatcherKind.ChooseWorkerCacheLookup || kind == DispatcherKind.ChooseWorkerCpu;
return kind == DispatcherKind.ChooseWorkerLight || kind == DispatcherKind.ChooseWorkerCacheLookup || kind == DispatcherKind.ChooseWorkerCpu || kind == DispatcherKind.ChooseWorkerIpc;
}

}
Expand Down

0 comments on commit 2a109b4

Please sign in to comment.