Skip to content

Commit

Permalink
Merge pull request #492 from beer-garden/Job_Export_ID
Browse files Browse the repository at this point in the history
Include Job ID in export schema
  • Loading branch information
TheBurchLog authored Jul 12, 2024
2 parents 23635c1 + 18f23e4 commit 923835f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Brewtils Changelog
==================

3.26.4
------
TBD

- Expand Job Export to include Job id

3.26.3
------
7/10/24
Expand Down
1 change: 0 additions & 1 deletion brewtils/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,6 @@ def __init__(self, *args, **kwargs):
# exclude fields from a Job that we don't want when we later go to import
# the Job definition
self.opts.exclude += (
"id",
"next_run_time",
"success_count",
"error_count",
Expand Down
1 change: 0 additions & 1 deletion brewtils/test/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,6 @@ def job_dict_for_import(job_dict):
"""A job dict but some keys and values are missing."""
dict_copy = copy.deepcopy(job_dict)
for field in [
"id",
"next_run_time",
"success_count",
"error_count",
Expand Down

0 comments on commit 923835f

Please sign in to comment.