-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
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
fix: periodically pull ats addr #1814
base: graphite-base/1814
Are you sure you want to change the base?
fix: periodically pull ats addr #1814
Conversation
Deploying rivet with Cloudflare Pages
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
use tokio::sync::RwLock; | ||
|
||
/// Duration between pulling addresses again. | ||
const PULL_INTERVAL: Duration = Duration::from_secs(3 * 60 * 60); |
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.
should this be this high? if we taint an ats node, we should have the new ats endpoints come online within a reasonable amount of time. any reason not to do it every minute?
4786ade
to
cccd6d9
Compare
1465558
to
8d5d663
Compare
Fixes RVT-4346
Changes