ssteiner

Results 12 comments of ssteiner

Good thing we have the source - I swapped the nuget package for my own build, and sure enough I quickly identified what prevented my messages from being delivered. In...

I'm using version 6.2.0. I finally figured out the culprit. In my Startup.cs 's `ConfigureServices` I have this: ``` services.AddServerSentEvents(options => { options.ReconnectInterval = 5000; options.KeepaliveInterval = startupConfig.SseKeepAliveInterval; options.KeepaliveMode =...