sbera87

Results 11 comments of sbera87

> Left some comments, have some concerns around exception handling and the structure of some of the operations. but overall the execution pattern looks good, just need to refactor some...

The logs stem from AWSAuthV4Signer::SignRequestWithCreds when this logical block is not satisfied ``` if(signBody || request.GetUri().GetScheme() != Http::Scheme::HTTPS) { ... } ``` which means signBody is false (its likely that...

I confirm the issue observed with the code presented. This is not the expected usage. The scheme field in client configuration is only used along with config.endpointOverride field. Default protocol...

"But if you've already set the config.endpointOverride field to use HTTP, there's absolutely no need to set config.scheme" -That is true. You don't have to set scheme in that case....

Fix has been provided via https://github.com/aws/aws-sdk-cpp/pull/3245. Waiting for customer feedback

Could you please indicate which operation was attempted for this issue? I think timeout is not supported for Async operations. GetObjectAsync, CopyObjectAsync will show the issue. GetObject and CopyObject uses...

Have you tried chaining filter stream with std::stringstream buffer that is set originally in the request through request.SetResponseStreamFactory(..) ``` std::stringstream buffer; // hook this with the response stream factory boost::iostreams::filtering_ostream...

This sounds like the issue raised to sanitizer https://github.com/google/sanitizers/issues/1773 This may be a false positive warning. CRTP is a valid design pattern used for compile time polymorphism. From what I...

Hello, I tried to replicate the issue you described but I couldn't replicate it. Here is the test code you can try . It works for me. ``` #include #include...

Hello, from the [example](https://github.com/awsdocs/aws-doc-sdk-examples/blob/main/cpp/example_code/transcribe-streaming/get_transcript.cpp#L38) , the client configuration field httpLibPerfMode defaults to [Http::TransferLibPerformanceMode::LOW_LATENCY](https://github.com/aws/aws-sdk-cpp/blob/c1f80705fa6346a640b8d22e572c9b8abe7b7d09/src/aws-cpp-sdk-core/include/aws/core/client/ClientConfiguration.h#L336) Could you please retry with the following setting locally and check: `config.httpLibPerfMode = Http::TransferLibPerformanceMode::REGULAR;`