Skip to content

Commit

Permalink
Update parameter support for filename
Browse files Browse the repository at this point in the history
  • Loading branch information
1maple1 committed Dec 12, 2024
1 parent aff3105 commit 6217ee7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Brewtils Changelog
------
TBD

- Update Parameter and Resolvable to add filename
- Updated Wait Timeout Exception expected HTTP code from 408 to 504
- Dropping Official Python 2.7 Support

Expand Down
4 changes: 4 additions & 0 deletions brewtils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ def __init__(
self,
key=None,
type=None, # noqa # shadows built-in
filename=None,
multi=None,
display_name=None,
optional=None,
Expand All @@ -339,6 +340,7 @@ def __init__(
):
self.key = key
self.type = type
self.filename = filename
self.multi = multi
self.display_name = display_name
self.optional = optional
Expand Down Expand Up @@ -1690,11 +1692,13 @@ def __init__(
self,
id=None, # noqa # shadows built-in
type=None, # noqa # shadows built-in
filename=None,
storage=None,
details=None,
):
self.id = id
self.type = type
self.filename = filename
self.storage = storage
self.details = details or {}

Expand Down

0 comments on commit 6217ee7

Please sign in to comment.