Skip to content

Commit b71ae4a

Browse files
committed
[FIX]: Commat issue
1 parent 1c871bb commit b71ae4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Models/MongoConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public MongoConnection(IConfiguration configuration)
1818
_configuration = configuration ?? throw new ArgumentNullException(nameof(configuration));
1919
// This method can be used to initialize or test the MongoDB connection
2020
// using the configuration settings provided.
21-
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12
21+
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
2222

2323
var dbPassword = _configuration["MONGODB_PASSWORD"]
2424
?? Environment.GetEnvironmentVariable("MONGODB_PASSWORD")

0 commit comments

Comments
 (0)