Skip to content

Commit 11a4daa

Browse files
authored
Merge pull request #907 from BlueDotBrigade/BugFix/902-Telemetry
Merge branch to `main` for : Connecting to the correct database catalog. #902
2 parents 189faf9 + 26aa430 commit 11a4daa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Src/BlueDotBrigade.Weevil.Common/Configuration/TelemetryConfiguration.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ public static class TelemetryConfiguration
99
// Encrypt=True : Create a secure tunnel by using SSL/TLS so nobody can snoop on the data traveling between Weevil and Azure.
1010
// TrustServerCertificate=False : Do NOT blindly trust the server certificate. Validate it properly.
1111
private const string EmbeddedConnectionString =
12-
@"Server=tcp:weevil-db.database.windows.net,1433;Initial Catalog=weevil;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;";
12+
//@"Server=tcp:weevil-db.database.windows.net,1433;Initial Catalog=weevil;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;";
13+
@"Server=tcp:weevil-db.database.windows.net,1433;Initial Catalog=weevil-db-catalog;Encrypt=True;TrustServerCertificate=False;Persist Security Info=False;Connection Timeout=30;";
1314

1415
/// <summary>
1516
/// Returns the telemetry database connection string embedded in the application.

0 commit comments

Comments
 (0)