Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include Job ID in export schema #492

Merged
merged 2 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading