Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Bittmann committed Feb 2, 2022
1 parent 3a2aa99 commit 9c2a264
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 32 deletions.
1 change: 1 addition & 0 deletions lib/Database.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export default class Database extends Events {

this._db = open({
path: path.join(this.#path, this.#name),
sharedStructuresKey: Symbol.for('structures')
});
this.#closed = false;

Expand Down
1 change: 1 addition & 0 deletions lib/Thread.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ function startDb(dbpath, name, cache) {
if(!db) {
db = open({
path: path.join(dbpath, name),
sharedStructuresKey: Symbol.for('structures'),
cache: cache
});
virtualDB = new VirtualDatabase(db);
Expand Down
62 changes: 31 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"acorn": "^8.7.0",
"axios": "^0.25.0",
"fastify": "^3.27.0",
"lmdb": "^2.1.7",
"lmdb": "^2.2.0-beta1",
"minimist": "^1.2.5",
"nanoid": "^3.2.0",
"threads": "^1.7.0",
Expand Down

0 comments on commit 9c2a264

Please sign in to comment.