Gerrit Renker

Results 33 comments of Gerrit Renker

The problem with uninitialized/empty `m_executor` is resolved by #1884, as it initializes the base class first.

@jmklix - please take a look at https://github.com/aws/aws-sdk-cpp/pull/1996/commits/752d68788923c1412033490d85b1165eac06d433 - there was an error in the previous commit: both the CRT and the AWS logging system must be shut down after...

This is failing on `cspell` - issue may have to do with cspell configuration.

> This doesn't pass some of our tests required before merging. Does this effect your program in any way or do you only find it when running TSAN analyzer? Do...

Here is how we back-ported that in our code, since we ran into the same issue: the CRT does not pickup `AWS_{,DEFAULT_}REGION`: ```c++ Aws::S3Crt::ClientConfiguration config; // ... config.region = []()...

The problem is also resolved by #1884.

Hi Sergey, thank you so much for taking the time to understand the underlying problem, and getting back with good questions. With regard to _reproducing the double-free problem_ - this...

@SergeyRyabinin -- thank you for following up and getting to the root of this. In some of our tests we have seen occasional crashes (at `exit` time) in `aws-cpp-sdk-core/source/monitoring/MonitoringManager.cpp`, I...

Hi, thank you for responding. We are interested in moving forward with v2, but had faced several problems with TLS connections while still using v1. We encountered several variations of...

Yes, we do use short-lived req/rep transactions, which was the reason for the former interest in [UDP](https://github.com/nanomsg/mangos/issues/72). TCP keep-alive (btw I had forgotten to turn it on by default, as...