Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #19 from azuqua/kevin/develop
Browse files Browse the repository at this point in the history
update vector clock constants to fix milli/micro error
  • Loading branch information
kevinwilson541 committed Apr 24, 2017
2 parents 3d32106 + 1c791b8 commit 5d44e8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/consts.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ var vclockOpts = {
// number of elements that need to exist for trimming to occur
lowerBound: 10,
// how old the youngest member needs to be before considering trimming
youngBound: 20000,
youngBound: 20000000,
// when trimming, trim to at least this number of elements
upperBound: 50,
// when trimming, trim any members at least this old
oldBound: 86400000
oldBound: 86400000000
};

var networkHost = os.hostname();
Expand Down

0 comments on commit 5d44e8a

Please sign in to comment.