Skip to content

Commit f52f3e8

Browse files
committed
Temporarily comment out certain calls to DropDatabase to work around apparent server issues.
1 parent 2e88e91 commit f52f3e8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/MongoDB.Driver.Core.TestHelpers/CoreTestConfiguration.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ public static void TearDown()
279279
{
280280
if (__cluster.IsValueCreated)
281281
{
282-
DropDatabase();
282+
// TODO: DropDatabase
283+
//DropDatabase();
283284
__cluster.Value.Dispose();
284285
__cluster = new Lazy<ICluster>(CreateCluster, isThreadSafe: true);
285286
}

src/MongoDB.Driver.Core.Tests/Core/Operations/OperationTestBase.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ public virtual void TestFixtureTearDown()
3030
{
3131
try
3232
{
33-
var dropDatabaseOperation = new DropDatabaseOperation(_databaseNamespace, _messageEncoderSettings);
34-
ExecuteOperation(dropDatabaseOperation);
33+
// TODO: DropDatabase
34+
//var dropDatabaseOperation = new DropDatabaseOperation(_databaseNamespace, _messageEncoderSettings);
35+
//ExecuteOperation(dropDatabaseOperation);
3536
}
3637
catch
3738
{

0 commit comments

Comments
 (0)