Skip to content

Commit

Permalink
Increase max endpoint rotations (#1465)
Browse files Browse the repository at this point in the history
Increase from 5 to 10.
  • Loading branch information
jaymell authored Oct 1, 2024
1 parent 010844c commit 1cf8a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/svix-server/src/core/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ pub struct ExpiringSigningKeys(pub Vec<ExpiringSigningKey>);
json_wrapper!(ExpiringSigningKeys);

impl ExpiringSigningKeys {
pub const MAX_OLD_KEYS: usize = 5;
pub const MAX_OLD_KEYS: usize = 10;
pub const OLD_KEY_EXPIRY_HOURS: i64 = 24;
}

Expand Down

0 comments on commit 1cf8a7f

Please sign in to comment.