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:
parent
0828ace09b
commit
024c0eaad1
2 changed files with 5 additions and 0 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue