-
Notifications
You must be signed in to change notification settings - Fork 171
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
RUST-906 Add native support for AWS IAM Roles for service accounts, EKS in particular #885
Conversation
5c8535c
to
9a59e02
Compare
.build() | ||
.map_err(|e| Error::internal(format!("error initializing http client: {}", e)))?; | ||
Ok(Self { inner }) | ||
pub(crate) struct HttpRequest { |
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 refactored this file to match the design of reqwest
's corresponding objects -- this made it easier to support queries without needing to pass None
to all the existing HTTP requests in our code and to deserialize to arbitrary types.
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.
This is way nicer, thank you.
20e3271
to
29e6b50
Compare
.evergreen/install-dependencies.sh
Outdated
@@ -27,6 +27,7 @@ for arg; do | |||
|
|||
source .evergreen/configure-rust.sh | |||
rustup toolchain install nightly -c rustfmt | |||
rustup default 1.69 |
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.
temporary fix to remove CI noise
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.
LGTM!
.build() | ||
.map_err(|e| Error::internal(format!("error initializing http client: {}", e)))?; | ||
Ok(Self { inner }) | ||
pub(crate) struct HttpRequest { |
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.
This is way nicer, thank you.
c8cea47
to
d5e73ca
Compare
No description provided.