We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aa09d0 commit 9d98d8dCopy full SHA for 9d98d8d
src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp
@@ -193,9 +193,9 @@ Aws::Vector<Aws::String> calculateAuthPreferences() {
193
// Automatically determine the AWS region from environment variables, configuration file and EC2 metadata.
194
Aws::Vector<Aws::String> res;
195
auto prefs = Aws::Environment::GetEnv("AWS_AUTH_SCHEME_PREFERENCE");
196
- Aws::Vector<Aws::String> prefsList = StringUtils::Split(prefs, ',');
+ Aws::Vector<Aws::String> prefsList = Aws::Utils::StringUtils::Split(prefs, ',');
197
for (auto& pref : prefsList) {
198
- res.push_back(StringUtils::Trim(pref.c_str()));
+ res.push_back(Aws::Utils::StringUtils::Trim(pref.c_str()));
199
}
200
return res;
201
0 commit comments