Skip to content

Commit

Permalink
Fix MSVC CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Sep 18, 2024
1 parent 153fdff commit a046a6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace Aws {
public:
SSOCredentialsProvider();
explicit SSOCredentialsProvider(const Aws::String& profile);
explicit SSOCredentialsProvider(const Aws::String& profile, std::shared_ptr<const Client::ClientConfiguration> config);
explicit SSOCredentialsProvider(const Aws::String& profile, std::shared_ptr<const Aws::Client::ClientConfiguration> config);
/**
* Retrieves the credentials if found, otherwise returns empty credential set.
*/
Expand All @@ -44,7 +44,7 @@ namespace Aws {
// The SSO Token Provider
Aws::Auth::SSOBearerTokenProvider m_bearerTokenProvider;
// The client configuration to use
std::shared_ptr<const Client::ClientConfiguration> m_config;
std::shared_ptr<const Aws::Client::ClientConfiguration> m_config;

void Reload() override;
void RefreshIfExpired();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ SSOCredentialsProvider::SSOCredentialsProvider(const Aws::String& profile) : SSO
{
}

SSOCredentialsProvider::SSOCredentialsProvider(const Aws::String& profile, std::shared_ptr<const Client::ClientConfiguration> config) :
SSOCredentialsProvider::SSOCredentialsProvider(const Aws::String& profile, std::shared_ptr<const Aws::Client::ClientConfiguration> config) :
m_profileToUse(profile),
m_bearerTokenProvider(profile),
m_config(std::move(config))
Expand Down

0 comments on commit a046a6c

Please sign in to comment.