Switch to PROD DB and update SignalR hub protocol
Updated the connection string in appsettings.json to use the FruitBank_PROD database instead of FruitBank_DEV. Changed the SignalR hub protocol registration in PluginNopStartup.cs from AcBinaryHubProtocol to AyCodeBinaryHubProtocol.
This commit is contained in:
parent
d68f060e66
commit
0d446c26df
|
|
@ -152,7 +152,7 @@ public class PluginNopStartup : INopStartup
|
||||||
//hubOptions.HandshakeTimeout = TimeSpan.FromSeconds(15); //default timeout is 15 seconds
|
//hubOptions.HandshakeTimeout = TimeSpan.FromSeconds(15); //default timeout is 15 seconds
|
||||||
});
|
});
|
||||||
|
|
||||||
services.AddSingleton<IHubProtocol>(new AcBinaryHubProtocol());
|
services.AddSingleton<IHubProtocol>(new AyCodeBinaryHubProtocol());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue