-
It looks like some AWS SDKs have flags for a "clock skew", while some "automatically" apply this, like the v3 Javascript API. I have a feeling that the Rust SDK does not? I was having issues with a Windows user authenticating, getting persistent Is there any way I can programmatically account for this in my application? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Interesting. The Rust SDK does have middleware for correcting clock skew: https://github.com/smithy-lang/smithy-rs/blob/7eb008c4f7d852700e8c468fc1691e3cf880f2e7/aws/rust-runtime/aws-runtime/src/service_clock_skew.rs#L18 However, it looks like it's not used when computing the signature. I'm going to convert this to an issue to track the fix. |
Beta Was this translation helpful? Give feedback.
Interesting. The Rust SDK does have middleware for correcting clock skew: https://github.com/smithy-lang/smithy-rs/blob/7eb008c4f7d852700e8c468fc1691e3cf880f2e7/aws/rust-runtime/aws-runtime/src/service_clock_skew.rs#L18
However, it looks like it's not used when computing the signature. I'm going to convert this to an issue to track the fix.