1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-13 14:02:42 +01:00

Fix compatibility with newer AWS SDKs (#4316)

Tested against AWS SDK 1.8.99. Fixes #3201.

(cherry picked from commit e20a3ec756)
This commit is contained in:
Stéphan Kochen 2020-12-04 19:32:35 +01:00 committed by Orivej Desh
parent 0828ace09b
commit 024c0eaad1
2 changed files with 5 additions and 0 deletions

View file

@ -56,6 +56,10 @@ class AwsLogger : public Aws::Utils::Logging::FormattedLogSystem
{
debug("AWS: %s", chomp(statement));
}
#if !(AWS_VERSION_MAJOR <= 1 && AWS_VERSION_MINOR <= 7 && AWS_VERSION_PATCH <= 115)
void Flush() override {}
#endif
};
static void initAWS()