-
Notifications
You must be signed in to change notification settings - Fork 259
[Feature] Fallback gateway listener and remove legacy key support #6249
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
base: develop
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
104a2c3 to
371441b
Compare
...t-core/gateways-storage/fs_gateways_migrations/20251126120000_remove_legacy_add_fallback.sql
Show resolved
Hide resolved
common/client-core/gateways-storage/src/backend/fs_backend/mod.rs
Outdated
Show resolved
Hide resolved
|
|
||
| pub const REMOTE_GATEWAY_TYPE: &str = "remote"; | ||
| pub const CUSTOM_GATEWAY_TYPE: &str = "custom"; | ||
| const GATEWAY_DETAILS_TTL: Duration = Duration::days(7); |
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 we make it configurable instead via client config?
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.
I don't know, I haven't thought that far
This PR removes legacy keys support, started by @jstuczyn in #5531 and #5553.
It also adds a secondary ws gateway listener if available and update them every 7 days
Client side has been smoke tested, gateway side not at all
This change is