From 0d446c26df8432aa7203f8d600c1828629debf05 Mon Sep 17 00:00:00 2001 From: Loretta Date: Mon, 6 Apr 2026 22:45:22 +0200 Subject: [PATCH] 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. --- Nop.Plugin.Misc.AIPlugin/Infrastructure/PluginNopStartup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nop.Plugin.Misc.AIPlugin/Infrastructure/PluginNopStartup.cs b/Nop.Plugin.Misc.AIPlugin/Infrastructure/PluginNopStartup.cs index 214a87c..c61b609 100644 --- a/Nop.Plugin.Misc.AIPlugin/Infrastructure/PluginNopStartup.cs +++ b/Nop.Plugin.Misc.AIPlugin/Infrastructure/PluginNopStartup.cs @@ -152,7 +152,7 @@ public class PluginNopStartup : INopStartup //hubOptions.HandshakeTimeout = TimeSpan.FromSeconds(15); //default timeout is 15 seconds }); - services.AddSingleton(new AcBinaryHubProtocol()); + services.AddSingleton(new AyCodeBinaryHubProtocol()); } ///