Skip to content

Commit 08408ea

Browse files
committed
Remove unused background option from mongodb index creation.
1 parent 8a10203 commit 08408ea

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# bedrock-ssm-mongodb ChangeLog
22

3+
## 12.1.1 - 2025-mm-dd
4+
5+
### Fixed
6+
- Remove unused `background` option from mongodb index creation.
7+
38
## 12.1.0 - 2025-02-04
49

510
### Added

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ bedrock.events.on('bedrock-mongodb.ready', async () => {
4949
// cover queries by ID (<keystoreId>/<localId>)
5050
collection: 'ssm',
5151
fields: {keystoreId: 1, localId: 1},
52-
options: {unique: true, background: false}
52+
options: {unique: true}
5353
}]);
5454
});
5555

0 commit comments

Comments
 (0)