Skip to content

Commit 17879fd

Browse files
committed
Fix precalculated hash allocationtag namespace
1 parent 6a2c33f commit 17879fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aws-cpp-sdk-core/source/client/AWSClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ void AWSClient::BuildHttpRequest(const Aws::AmazonWebServiceRequest& request, co
930930

931931
// check for retry context, if present use it
932932
if (request.m_retryContext.m_requestHash.second != nullptr) {
933-
const auto hash = Aws::MakeShared<Aws::Utils::Crypto::PrecalculatedHash>(AWS_SMITHY_CLIENT_CHECKSUM, HashingUtils::Base64Encode(request.m_retryContext.m_requestHash.second->GetHash().GetResult()));
933+
const auto hash = Aws::MakeShared<Aws::Utils::Crypto::PrecalculatedHash>(smithy::client::AWS_SMITHY_CLIENT_CHECKSUM, HashingUtils::Base64Encode(request.m_retryContext.m_requestHash.second->GetHash().GetResult()));
934934
httpRequest->SetRequestHash(request.m_retryContext.m_requestHash.first, hash);
935935
}
936936
}

0 commit comments

Comments
 (0)