1
0
mirror of synced 2024-06-28 14:57:40 +00:00

Merge tag '0.6.1' into develop

bugfix for 0.6.0 0.6.1
This commit is contained in:
Mark van Renswoude 2018-12-19 21:42:58 +01:00
commit 85572717b2

View File

@ -56,11 +56,10 @@ namespace Tapeti.Flow.Default
private async Task SendRequest(FlowContext context, object message, ResponseHandlerInfo responseHandlerInfo,
string convergeMethodName = null, bool convergeMethodTaskSync = false)
{
Debug.Assert(context.FlowState != null, "context.FlowState != null");
if (context.FlowState == null)
{
await CreateNewFlowState(context);
Debug.Assert(context.FlowState != null, "context.FlowState != null");
}
var continuationID = Guid.NewGuid();