Skip to content

Commit

Permalink
Remove xcacheSize and xmaxOpenFiles from leak tests (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphtheninja authored and vweevers committed Dec 16, 2018
1 parent d73afd8 commit 50a7d6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/leak-tester-batch.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ var run = CHAINED
}

db = testCommon.factory()
db.open({ xcacheSize: 0, xmaxOpenFiles: 10 }, function () {
db.open(function () {
rssBase = process.memoryUsage().rss
run()
})
2 changes: 1 addition & 1 deletion test/leak-tester.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function run () {
}

db = testCommon.factory()
db.open({ xcacheSize: 0, xmaxOpenFiles: 10 }, function () {
db.open(function () {
rssBase = process.memoryUsage().rss
run()
})

0 comments on commit 50a7d6f

Please sign in to comment.