I have a really weird issue, it might be my setup is weird, but I give it a try.
I have one service where I use two subscriptions. They both share the same underlying connection, so that should work fine. The first subscription is a catch-up subscription that makes sure our read views are in sync with the event store. The second one is a live subscription that handles all event that should be handled only when the system is live. The reasoning for this is that we only want to handle it when it happened, if the system goes back up we don’t want to retry.
Now to the problem. When I run this service in VS it seems like the live subscription randomly loses the connection against the event store. I can’t see anything in the log and it is only when I debug. If I fire up the service without debugging it works as expected.
Has anyone experienced something like this?