Browse Source

Merge branch 'master' of github.com:Squidex/squidex

pull/141/head
Sebastian Stehle 9 years ago
parent
commit
2b4f12bf11
  1. 7
      src/Squidex.Infrastructure/CQRS/Events/Actors/EventConsumerActor.cs

7
src/Squidex.Infrastructure/CQRS/Events/Actors/EventConsumerActor.cs

@ -290,14 +290,15 @@ namespace Squidex.Infrastructure.CQRS.Events.Actors
}
}
private async Task UnsubscribeThisAsync()
private Task UnsubscribeThisAsync()
{
if (eventSubscription != null)
{
await eventSubscription.StopAsync();
eventSubscription.StopAsync().Forget();
eventSubscription = null;
}
return TaskHelper.Done;
}
private Task SubscribeThisAsync(string position)

Loading…
Cancel
Save