We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If Brave desktop browser has sync enabled, but there were no changes on synced objects, then data gets queried from AWS S3 storage and not from SQS.
This happens because the last bookmark operation time is may be older than 24 hours, and we pass the last record timestampt, so (currentTime - startAtToCheck) > 24 hours at https://github.com/brave/sync/blob/staging/client/requestUtil.js#L273
Option I, quick
Sources tab
Pretty print
if (this.shouldListObject(startAt
const s3ObjectsPromise = s3Helper.listObjects(this.s3, options, !!maxRecords);
6. Code should not go into `if` block
Option II, needs > 24h to see
Option I.
if
Easily
On any channel.
The text was updated successfully, but these errors were encountered:
Closing as wontfix - will be solved with Sync v2
wontfix
Sorry, something went wrong.
AlexeyBarabash
Successfully merging a pull request may close this issue.
Description
If Brave desktop browser has sync enabled, but there were no changes on synced objects, then data gets queried from AWS S3 storage and not from SQS.
This happens because the last bookmark operation time is may be older than 24 hours, and we pass the last record timestampt, so (currentTime - startAtToCheck) > 24 hours at https://github.com/brave/sync/blob/staging/client/requestUtil.js#L273
Steps to Reproduce
Option I, quick
Sources tab
, clickPretty print
buttonif (this.shouldListObject(startAt, category) || opts.compaction) {if (this.shouldListObject(startAt
line and set the breakpoint on thereActual result:
const s3ObjectsPromise = s3Helper.listObjects(this.s3, options, !!maxRecords);
Expected result:
Option II, needs > 24h to see
Option I.
..................
6 Code should go into
if
block, as we want to fetch from S3Reproduces how often:
Easily
Brave version (brave://version info)
Version/Channel Information:
On any channel.
The text was updated successfully, but these errors were encountered: