Commit 32122ce2 authored by John DiSanti's avatar John DiSanti
Browse files

Remove warning for valid IMDS provider use-case (#1559)

parent ba975647
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -116,3 +116,9 @@ a version bump in all of them, but this should not be relied upon.
references = ["smithy-rs#1540"]
meta = { "breaking" = false, "tada" = false, "bug" = false }
author = "jdisanti"

[[aws-sdk-rust]]
message = "Remove warning for valid IMDS provider use-case"
references = ["smithy-rs#1559", "aws-sdk-rust#582"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "jdisanti"
+0 −3
Original line number Diff line number Diff line
@@ -63,9 +63,6 @@ impl Builder {
    ///
    /// For more information about IMDS client configuration loading see [`imds::Client`]
    pub fn imds_client(mut self, client: imds::Client) -> Self {
        if self.provider_config.is_some() {
            tracing::warn!("provider config override by a full client override");
        }
        self.imds_override = Some(client);
        self
    }