From 806523ccb2bc8c7032f4c284181256eb34234839 Mon Sep 17 00:00:00 2001 From: Sagi Hirshfeld Date: Tue, 18 Nov 2025 19:26:22 +0200 Subject: [PATCH] Switch notify to SigV4 by removing deprecated Signature V2 config --- notify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notify.py b/notify.py index 04a8715..08e821f 100644 --- a/notify.py +++ b/notify.py @@ -51,14 +51,14 @@ def __init__(self): aws_access_key_id=self.access_key, region_name='default', aws_secret_access_key=self.secret_key, - config=botocore.client.Config(signature_version = 's3')) + ) self.s3 = boto3.client('s3', endpoint_url = self.endpoint_url, aws_access_key_id = self.access_key, aws_secret_access_key = self.secret_key, region_name = 'default', - config=botocore.client.Config(signature_version = 's3')) + ) ''' This function creates and sns-like topic with configured push endpoint'''