Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

Commit ae48a60

Browse files
author
György Demarcsek
committed
fixing regex
1 parent 687b19f commit ae48a60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/route53.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def load_route53_entries(edda_client, zone=None):
4343

4444
route53_changed_no_content_regexes = [
4545
re.compile(r"NoSuchBucket|NoSuchKey|NoSuchVersion"), # NoSuch error messages from S3
46-
re.compile(r"[Ee]xpir\(ed|y|es\)"), # expiry messages
46+
re.compile(r"[Ee]xpir(ed|y|es)"), # expiry messages
4747
re.compile(r"not exists?") # generic does not exist
4848
]
4949

0 commit comments

Comments
 (0)