You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(agents): remove rusoto-based AWS region validation for signer config
PR #8669 removed rusoto's `FromStr` validation for S3 checkpoint-syncer
regions but missed the same validation on agent signer regions
(`validator.region`, `chains.<name>.signer.region`), which still rejected
regions like `eu-central-2`.
Store `SignerConf::Aws.region` as a plain `String` and resolve it to a
`rusoto_core::Region` at KMS client construction time: use the enum variant
when rusoto recognizes the name, otherwise fall back to `Region::Custom`
with a synthesized commercial KMS endpoint.
0 commit comments