Skip to content

Commit 6a1e807

Browse files
committed
fixed snake case
1 parent 7d89c5d commit 6a1e807

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/aws-cpp-sdk-core/source/internal/AWSHttpResourceClient.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ namespace Aws
216216
[&credentialConfig]() -> ClientConfiguration{
217217
Aws::Client::ClientConfiguration clientConfig;
218218
clientConfig.credentialProviderConfig = credentialConfig;
219-
clientConfig.connectTimeoutMs = credentialConfig.imdsConfig.metadata_service_timeout * 1000;
220-
clientConfig.requestTimeoutMs = credentialConfig.imdsConfig.metadata_service_timeout * 1000;
219+
clientConfig.connectTimeoutMs = credentialConfig.imdsConfig.metadataServiceTimeout * 1000;
220+
clientConfig.requestTimeoutMs = credentialConfig.imdsConfig.metadataServiceTimeout * 1000;
221221
clientConfig.retryStrategy = Aws::MakeShared<DefaultRetryStrategy>(
222-
RESOURCE_CLIENT_CONFIGURATION_ALLOCATION_TAG, credentialConfig.imdsConfig.metadata_service_num_attempts - 1, 1000);
222+
RESOURCE_CLIENT_CONFIGURATION_ALLOCATION_TAG, credentialConfig.imdsConfig.metadataServiceNumAttempts - 1, 1000);
223223
return clientConfig;
224224
}(),
225225
EC2_METADATA_CLIENT_LOG_TAG),

0 commit comments

Comments
 (0)