From fbe2fbd0b5070cc4b212534fe3f52fe41651aad5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Oct 2025 16:50:16 +0000 Subject: [PATCH 1/2] Initial plan From 070dee1b0e1821d636ff76f8f5e7e08a52570bbf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Oct 2025 16:54:26 +0000 Subject: [PATCH 2/2] Fix build warning: Remove obsolete TrustServerCertificate property Co-authored-by: christoph-codes <54452490+christoph-codes@users.noreply.github.com> --- backend/RecallAI.Api/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/RecallAI.Api/Program.cs b/backend/RecallAI.Api/Program.cs index bdea603..378222b 100644 --- a/backend/RecallAI.Api/Program.cs +++ b/backend/RecallAI.Api/Program.cs @@ -378,7 +378,7 @@ static bool IsLikelyDatabaseUrl(string value) => builder.Username = "*****"; } - return $"Host={builder.Host};Port={builder.Port};Database={builder.Database};SslMode={builder.SslMode};TrustServerCertificate={builder.TrustServerCertificate}"; + return $"Host={builder.Host};Port={builder.Port};Database={builder.Database};SslMode={builder.SslMode}"; } catch {