Skip to content

Commit c5aac19

Browse files
committed
Remove table scan deactivation from tests
1 parent 913b486 commit c5aac19

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/WorkflowCore.Tests.MongoDB/MongoDockerSetup.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ public MongoDockerSetup()
1919
public async Task InitializeAsync()
2020
{
2121
await _mongoResource.InitializeAsync();
22-
var command = new BsonDocument { { "setParameter", 1 }, { "notablescan", 1 } };
23-
_mongoResource.Client.GetDatabase("admin").RunCommand<BsonDocument>(command);
22+
// TODO: Should be enabled
23+
// var command = new BsonDocument { { "setParameter", 1 }, { "notablescan", 1 } };
24+
// _mongoResource.Client.GetDatabase("admin").RunCommand<BsonDocument>(command);
2425
ConnectionString = _mongoResource.ConnectionString;
2526
}
2627

0 commit comments

Comments
 (0)