mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
Fix compatibility with newer AWS SDKs
Tested against AWS SDK 1.8.99. Fixes #3201.
This commit is contained in:
parent
45645b6f3b
commit
e20a3ec756
2 changed files with 5 additions and 0 deletions
|
@ -57,6 +57,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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue