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
What is the expected output? What do you see instead?
Method execution to complete successfully, instead it deadlocks
Please provide any additional information below.
It's likely the LimitedConcurrencyLevelTaskScheduler used by MethodRunnerQueue is being inherited from the spawned Task. As there is only a single execution allowed the Task deadlocks.
The text was updated successfully, but these errors were encountered:
To prevent subtasks from attempting to use our LimitedConcurrencyLevelTaskScheduler we need to
specify TaskCreationOptions.HideScheduler when creating the Task
Resolves#3293
What version of the product are you using?
85.3.130
What architecture x86 or x64?
Both
On what operating system?
Any
Are you using
WinForms
,WPF
orOffScreen
?All
What steps will reproduce the problem?
Async
method from javascript that waits on aTask
to complete that uses Task.RunExample provided at https://github.com/kiewic/cefsharp-demo/blob/30cf8c4d7060bc41a1b0007507edf942e211cda0/CefSharpApp/BoundObject.cs
What is the expected output? What do you see instead?
Method execution to complete successfully, instead it deadlocks
Please provide any additional information below.
It's likely the
LimitedConcurrencyLevelTaskScheduler
used byMethodRunnerQueue
is being inherited from the spawnedTask
. As there is only a single execution allowed theTask
deadlocks.The text was updated successfully, but these errors were encountered: