I am using SignalR with the following connection string:
<add name="SignalR" providerName="System.Data.SqlClient" connectionString="Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=SignalR;Data Source=machine1" />
Everything is working fine, but in a specific enviroment SignalR fails telling it needs
Asynchronous Processing=true
To be added to the connection string.
Should I blindly add this ? (It has a performance hit SQL Server connection string Asynchronous Processing=true)
What could be causing this to work in one enviroment and fail in the other ?