Skip to content

Commit

Permalink
NXP-31254: fix mongodb index path
Browse files Browse the repository at this point in the history
  • Loading branch information
guirenard authored and kevinleturc committed Dec 16, 2022
1 parent 5d2a88d commit 61626f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ Create the following db indexes for an optimal functioning of the addon:
);
db.default.createIndex(
{ "file:content/digest": 1 }
{ "content.digest": 1 }
);
db.default.createIndex(
{ "coldstorage:coldContent/digest": 1 }
{ "coldstorage:coldContent.digest": 1 }
);
```

Expand Down

0 comments on commit 61626f9

Please sign in to comment.