Skip to content

Commit

Permalink
reduce token range
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Jan 18, 2025
1 parent c561ef1 commit 961b005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/archiveUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async function archiveRandom(max: number) {

export async function archiveToken(max?: number) {
// Archive random matches from Cassandra using token range (not all may be parsed)
let page = await getTokenRange(100);
let page = await getTokenRange(10);
if (max) {
page = page.filter((id) => id < max);
}
Expand Down

0 comments on commit 961b005

Please sign in to comment.