Commit c50d9a6d authored by Jeremy Mikola's avatar Jeremy Mikola

PHPLIB-85: Legacy index creation should use {w:1}

parent 85bef166
...@@ -5,6 +5,7 @@ namespace MongoDB\Operation; ...@@ -5,6 +5,7 @@ namespace MongoDB\Operation;
use MongoDB\Driver\Command; use MongoDB\Driver\Command;
use MongoDB\Driver\Server; use MongoDB\Driver\Server;
use MongoDB\Driver\BulkWrite as Bulk; use MongoDB\Driver\BulkWrite as Bulk;
use MongoDB\Driver\WriteConcern;
use MongoDB\Exception\InvalidArgumentException; use MongoDB\Exception\InvalidArgumentException;
use MongoDB\Exception\RuntimeException; use MongoDB\Exception\RuntimeException;
use MongoDB\Exception\UnexpectedTypeException; use MongoDB\Exception\UnexpectedTypeException;
...@@ -113,6 +114,6 @@ class CreateIndexes implements Executable ...@@ -113,6 +114,6 @@ class CreateIndexes implements Executable
$bulk->insert($index); $bulk->insert($index);
} }
$server->executeBulkWrite($this->databaseName . '.system.indexes', $bulk); $server->executeBulkWrite($this->databaseName . '.system.indexes', $bulk, new WriteConcern(1));
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment