Skip to content

Commit

Permalink
chore(bundles ans-104): set bundle retry wait to 15 minutes
Browse files Browse the repository at this point in the history
We may lower this further, but 1 minute seems a bit too fast.
  • Loading branch information
djwhitt committed Jun 7, 2024
1 parent 03682ec commit 4e77dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/standalone-sqlite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const MAX_WORKER_ERRORS = 100;
const STABLE_FLUSH_INTERVAL = 5;
const NEW_TX_CLEANUP_WAIT_SECS = 60 * 60 * 2;
const NEW_DATA_ITEM_CLEANUP_WAIT_SECS = 60 * 60 * 2;
const BUNDLE_REPROCESS_WAIT_SECS = 60 * 1;
const BUNDLE_REPROCESS_WAIT_SECS = 60 * 15;
const LOW_SELECTIVITY_TAG_NAMES = new Set(['App-Name', 'Content-Type']);

function tagJoinSortPriority(tag: { name: string; values: string[] }) {
Expand Down

0 comments on commit 4e77dbc

Please sign in to comment.