From 33f03b9f332f8c1fb6df4959d5fedcc8f9df4c25 Mon Sep 17 00:00:00 2001 From: Gabe <33893811+Gabefire@users.noreply.github.com> Date: Tue, 18 Jun 2024 20:46:52 -0500 Subject: [PATCH] Update Program.cs --- TalkWaveApi.WebSocket/Program.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/TalkWaveApi.WebSocket/Program.cs b/TalkWaveApi.WebSocket/Program.cs index f472017..971c79b 100644 --- a/TalkWaveApi.WebSocket/Program.cs +++ b/TalkWaveApi.WebSocket/Program.cs @@ -84,12 +84,7 @@ hubOptions.EnableDetailedErrors = true; hubOptions.KeepAliveInterval = TimeSpan.FromSeconds(10); hubOptions.HandshakeTimeout = TimeSpan.FromSeconds(5); - }).AddStackExchangeRedis("talkwavetest-vxc8e3.serverless.use2.cache.amazonaws.com:6379", options => - { - options.Configuration.Ssl = true; - options.Configuration.SslProtocols = System.Security.Authentication.SslProtocols.Tls12; - options.Configuration.AbortOnConnectFail = false; - }); + }).AddStackExchangeRedis("talkwavetest-vxc8e3.serverless.use2.cache.amazonaws.com:6379"); var app = builder.Build();