Marco Magdy
Marco Magdy
This has been fixed in v1.3.30
We'll have to revert this change f5c0f797e8267 See https://github.com/aws/aws-sdk-cpp/issues/781 for more details.
> lifetime-extension works just fine on rvalue references. This was the missing piece on my part. Thanks for bringing it up @Quuxplusone. Because we still support older compilers, I can't...
In https://github.com/aws/aws-sdk-cpp/issues/847 you said you are using gcc version 7.2.0 (Ubuntu 7.2.0-8ubuntu3.2). Was that a mistake?
C-Strings snip the value during JSON serialization. ```cpp JsonValue& JsonValue::WithString(const char* key, const Aws::String& value) { if (!m_value) { m_value = cJSON_CreateObject(); } const auto val = cJSON_CreateString(value.c_str()); //
I love the changes. Thank you for doing all that work. Would it be too much to ask to split this PR into many smaller ones? perhaps one that achieves...
Check if torch is loading libraries dynamically (via dlopen for example) and those libraries are not getting packaged. See https://github.com/awslabs/aws-lambda-cpp#common-pitfalls-with-packaging
The I/O is buffered. You should see the messages if you add `std::cout.flush()` at the end, or append `
Are you seeing the message `[ERROR] [1553201323958] LAMBDA_RUNTIME Failed to get next invocation. No Response from endpoint` in your logs on every invocation? or sometimes? I'd like to get more...
@webbnh the last warning is from the AWS SDK. Not Lambda. @samuaz I'm unable to reproduce the problem, and I feel it's yet-another-libcurl-problem that does not happen when using a...