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:
Loretta 2026-04-06 22:45:22 +02:00
parent d68f060e66
commit 0d446c26df
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ public class PluginNopStartup : INopStartup
//hubOptions.HandshakeTimeout = TimeSpan.FromSeconds(15); //default timeout is 15 seconds
});
services.AddSingleton<IHubProtocol>(new AcBinaryHubProtocol());
services.AddSingleton<IHubProtocol>(new AyCodeBinaryHubProtocol());
}
/// <summary>