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
InvokeWithTimer() is throwing an ObjectDisposedException when called as part of the Actor GC process. More specifically, UnloadWorkflow's await InvokeAndPump(workflow.UnloadAsync) seems to be causing a series of Async/Pumped operations that result in the aforementioned exception.
I adjusted the Actor's ActorGarbageCollectionSettings setting to 10/2 (scan/idle) with the sample WF adjusted to while(true)/Delay(1 min)/Invoke()
The text was updated successfully, but these errors were encountered:
cjrosa
changed the title
Unload Workflow during Actor GC
Unload Workflow during Actor Garbage Collection (GC)
Apr 25, 2017
InvokeWithTimer()
is throwing an ObjectDisposedException when called as part of the Actor GC process. More specifically,UnloadWorkflow
'sawait InvokeAndPump(workflow.UnloadAsync)
seems to be causing a series of Async/Pumped operations that result in the aforementioned exception.I adjusted the Actor's
ActorGarbageCollectionSettings
setting to 10/2 (scan/idle) with the sample WF adjusted to while(true)/Delay(1 min)/Invoke()The text was updated successfully, but these errors were encountered: