mnemanov
mnemanov
It occurred to me that it is possible that the following line in my application class: `private IHubContext signalHub = GlobalHost.ConnectionManager.GetHubContext();` executes before the Startup.ConfigureSignalR gets called. (which contains the...
> > I tested and I can confirm that class which contained the signalHub member was being initialized before SignalR was configured to UseSqlServer. (global.asax Application_Start executes before the Startup.Configuration),...
I left my production code as described above: (it was complicated to change the order in my code base and I didn't see the need) `private IHubContext signalHub { get...
If it can easily be fixed so the order doesn't matter that would be great, otherwise perhaps add a note to the documentation.
I did a little further checking: Testing for 12/29/2021, sunrise in Sydney Australia, (sunrise on 12/29 is 5:45:57 am local time). Sydney Australia is UTC +11 ``` ITimeZone timeZone =...