From bc1f8c35091bfebc74342f0ebcfa15526f6ed59b Mon Sep 17 00:00:00 2001 From: lalithamudala7 <155855662+lalithamudala7@users.noreply.github.com> Date: Thu, 22 Aug 2024 01:12:48 -0500 Subject: [PATCH] Update appsettings.Development.json adding TrustServerCertificate=True; in the connection string --- PlatformService/appsettings.Development.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PlatformService/appsettings.Development.json b/PlatformService/appsettings.Development.json index f50cc17..76787c2 100644 --- a/PlatformService/appsettings.Development.json +++ b/PlatformService/appsettings.Development.json @@ -8,8 +8,8 @@ }, "CommandService": "http://localhost:6000/api/c/platforms/", "ConnectionStrings": { - "PlatformsConn": "Server=localhost,1433;Initial Catalog=platformsdb;User ID=sa;Password=pa55w0rd;" + "PlatformsConn": "Server=localhost,1433;Initial Catalog=platformsdb;User ID=sa;Password=pa55w0rd;TrustServerCertificate=True;" }, "RabbitMQHost": "localhost", "RabbitMQPort": "5672" -} \ No newline at end of file +}