Skip to content

Conversation

@azkrishpy
Copy link
Contributor

Issue #, if available:

Description of changes:

  • Add proxy settings for profile credentials provider for underlying sts based provider.
  • Fix test memleaks in sso, sts-web-identity credential providers

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

@codecov-commenter
Copy link

codecov-commenter commented Dec 17, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 81.95%. Comparing base (37ebf2d) to head (a93b0a4).

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #284      +/-   ##
==========================================
+ Coverage   81.93%   81.95%   +0.01%     
==========================================
  Files          36       36              
  Lines        7065     7067       +2     
==========================================
+ Hits         5789     5792       +3     
+ Misses       1276     1275       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Comment on lines 380 to 386
struct aws_credentials_provider_imds_options imds_options = {
.bootstrap = options->bootstrap,
.function_table = options->function_table,
};

struct aws_credentials_provider *imds_provider =
aws_credentials_provider_new_imds(allocator, &imds_options);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need the proxy passed down to here as well?

Comment on lines 415 to 424
struct aws_credentials_provider_ecs_environment_options ecs_options = {
.bootstrap = options->bootstrap,
.function_table = options->function_table,
.tls_ctx = tls_ctx,
};
struct aws_credentials_provider *ecs_provider =
aws_credentials_provider_new_ecs_from_environment(allocator, &ecs_options);
if (!ecs_provider) {
goto done;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants