Skip to content

Commit

Permalink
Add missing field to the S3UploadEngine (#354)
Browse files Browse the repository at this point in the history
* add missing field

* fix conflict

* remvert pytest changes
  • Loading branch information
juandspy authored Jan 3, 2025
1 parent 56a137a commit 0ec2eb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 8 additions & 1 deletion ccx_messaging/engines/s3_upload_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def __init__(
formatter,
target_components=None,
extract_timeout=None,
unpacked_archive_size_limit=None,
extract_tmp_dir=None,
dest_bucket=None,
access_key=None,
Expand All @@ -72,7 +73,13 @@ def __init__(
archive path or other availables timestamps.
- `archive`: it will be replaced by the base name of the archive.
"""
super().__init__(formatter, target_components, extract_timeout, extract_tmp_dir)
super().__init__(
formatter=formatter,
target_components=target_components,
extract_timeout=extract_timeout,
unpacked_archive_size_limit=unpacked_archive_size_limit,
extract_tmp_dir=extract_tmp_dir,
)
self.dest_bucket = dest_bucket
self.archives_path_prefix = archives_path_prefix
self.archive_name_template = SlicedTemplate(archive_name_pattern)
Expand Down
6 changes: 0 additions & 6 deletions renovate.json

This file was deleted.

0 comments on commit 0ec2eb7

Please sign in to comment.