Skip to content
Snippets Groups Projects
Commit 28976956 authored by Kevin Jahns's avatar Kevin Jahns
Browse files

update dist, more args for SmallLookupBuffer

parent 5118f02b
No related branches found
No related tags found
No related merge requests found
Subproject commit 76ebd3043de17138548694f6f10e2bd1c80ff436
Subproject commit e2f93af86e9dd207cb57d313c6ac305cd69e34d1
......@@ -275,6 +275,7 @@ g.createUsers = async(function * createUsers (self, numberOfUsers, database, ini
}))
}
self.users = yield Promise.all(promises)
self.types = self.users.map(function (u) { return u.share.root })
return self.users
})
......
......@@ -300,9 +300,9 @@ module.exports = function (Y /* : any*/) {
I tried to optimize this for performance, therefore no highlevel operations.
*/
class SmallLookupBuffer extends Store {
constructor (arg) {
constructor (arg1, arg2) {
// super(...arguments) -- do this when this is supported by stable nodejs
super(arg)
super(arg1, arg2)
this.writeBuffer = createEmptyOpsArray(5)
this.readBuffer = createEmptyOpsArray(10)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment