Skip to content

Commit

Permalink
Updates init retry strategy log level
Browse files Browse the repository at this point in the history
  • Loading branch information
sbiscigl committed Jul 3, 2023
1 parent ad5a2df commit 2ee3404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ std::shared_ptr<RetryStrategy> InitRetryStrategy(Aws::String retryMode)
maxAttempts = static_cast<int>(Aws::Utils::StringUtils::ConvertToInt32(maxAttemptsString.c_str()));
if (maxAttempts == 0)
{
AWS_LOGSTREAM_WARN(CLIENT_CONFIG_TAG, "Retry Strategy will use the default max attempts.");
AWS_LOGSTREAM_INFO(CLIENT_CONFIG_TAG, "Retry Strategy will use the default max attempts.");
maxAttempts = -1;
}
}
Expand Down

0 comments on commit 2ee3404

Please sign in to comment.