Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1406 from alexispeter/mongo-index-dump-background
Browse files Browse the repository at this point in the history
do not dump background index creation info
  • Loading branch information
alexispeter committed Sep 10, 2014
2 parents a4131e2 + d63f6ce commit ee993c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/CM/Db/Cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private function _dbToFileMongo($namespace) {
return preg_match('/^' . strtolower($namespace) . '_/', $collection);
});
sort($collectionList);
$optionsValid = ['background', 'unique', 'name', 'dropDups', 'sparse', 'expireAfterSeconds'];
$optionsValid = ['unique', 'name', 'dropDups', 'sparse', 'expireAfterSeconds'];
$indexes = [];
foreach ($collectionList as $collection) {
$indexList = $mongo->getIndexInfo($collection);
Expand Down

0 comments on commit ee993c3

Please sign in to comment.