From 9bced16ee67e0607bb07cbfaf0363a0643b318d4 Mon Sep 17 00:00:00 2001 From: Attila Szakacs Date: Wed, 2 Oct 2024 09:55:33 +0200 Subject: [PATCH] news: add entry for #318 Signed-off-by: Attila Szakacs --- news/bugfix-318.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 news/bugfix-318.md diff --git a/news/bugfix-318.md b/news/bugfix-318.md new file mode 100644 index 000000000..f7c57bd94 --- /dev/null +++ b/news/bugfix-318.md @@ -0,0 +1,6 @@ +`s3()`: Eliminated indefinite memory usage increase for each reload. + +The increased memory usage is caused by the `botocore` library, which +caches the session information. We only need the Session object, if +`role()` is set. The increased memory usage still happens with that set, +currently we only fixed the unset case.