-
Notifications
You must be signed in to change notification settings - Fork 9
Fixes reconcile stamp push when fuzzing #68
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
memo.advance2 = advance | ||
if (advance) this.state.reconcileStamp += advance | ||
if (advance) { | ||
this.state.reconcileStamp = underscore.now() + 3 * msecs.day + advance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we are looking at a max of 5 days with 3 * days + advance
? Is this what we want?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct max push is 5 days from now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
memo.advance2 = advance | ||
if (advance) this.state.reconcileStamp += advance | ||
if (advance) { | ||
this.state.reconcileStamp = underscore.now() + 3 * msecs.day + advance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good
Fixes brave/browser-laptop#14042