EntityFrameworkPersistenceProvider hangs on call to GetWorkflowInstance #983
Unanswered
AndreduToit
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In EntityFrameworkPersistenceProvider.GetWorkflowInstance
should .FirstAsync(x => x.InstanceId == uid, cancellationToken)
be .FirstOrDefaultAsync(x => x.InstanceId == uid, cancellationToken)?
The FirstAsync() call hangs.
Perhaps there are also other methods in this class that would be better off with a call to .FirstOrDefaultAsync() and null checks?
Beta Was this translation helpful? Give feedback.
All reactions