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 f91f06d commit ccf6811Copy full SHA for ccf6811
src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp
@@ -195,9 +195,9 @@ Aws::Vector<Aws::String> calculateAuthPreferences() {
195
// Automatically determine the AWS region from environment variables, configuration file and EC2 metadata.
196
Aws::Vector<Aws::String> res;
197
auto prefs = Aws::Environment::GetEnv("AWS_AUTH_SCHEME_PREFERENCE");
198
- Aws::Vector<Aws::String> prefsList = StringUtils::Split(prefs, ',');
+ Aws::Vector<Aws::String> prefsList = Aws::Utils::StringUtils::Split(prefs, ',');
199
for (auto& pref : prefsList) {
200
- res.push_back(StringUtils::Trim(pref.c_str()));
+ res.push_back(Aws::Utils::StringUtils::Trim(pref.c_str()));
201
}
202
return res;
203
0 commit comments