--
You received this message because you are subscribed to the Google Groups "Event Store" group.
To unsubscribe from this group and stop receiving emails from it, send an email to event-store+unsubscribe@googlegroups.com.
Can you include a log during this period (it obviously will take us a while to run the test).
On Mon, Jul 17, 2017 at 2:56 PM, Anand <anand....@gmail.com> wrote:
Hey, I was able to replicate the issue with the attached test service. Steps to reproduce -> Install the service and run it over the weekend. > 24 hours of inactivity results in orphan connections showing up and event delivery has issues. The only solution we have found so far is to restart the event store every Monday.
On Thursday, May 18, 2017 at 2:33:40 AM UTC-4, Hayley-Jean Campbell wrote:Would you be able to share a sample of the code you are using to connect to your persistent subscriptions, or provide us with a test case?
--
You received this message because you are subscribed to the Google Groups "Event Store" group.
To unsubscribe from this group and stop receiving emails from it, send an email to event-store...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to event-store+unsubscribe@googlegroups.com.
var result = await _connection.ConnectToPersistentSubscriptionAsync(
streamName,
groupName,
(subscription, resolved) => Task.Run(() => OnEventAppearedPersistentStream(subscription, GetSubscriptionKey(streamName, groupName), resolved, false)),
(subscription, dropReason, exception) =>
{
subscription.Stop(timeout);
Task.Run(() => OnSubscriptionDropped(streamName, groupName, dropReason, exception));
},
null,
Environment.ProcessorCount,
false);--
You received this message because you are subscribed to the Google Groups "Event Store" group.
To unsubscribe from this group and stop receiving emails from it, send an email to event-store+unsubscribe@googlegroups.com.