diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0980fd55..4d173769 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Brewtils Changelog ================== +3.26.4 +------ +TBD + +- Expand Job Export to include Job id + 3.26.3 ------ 7/10/24 diff --git a/brewtils/schemas.py b/brewtils/schemas.py index a1fa4fbe..92427abd 100644 --- a/brewtils/schemas.py +++ b/brewtils/schemas.py @@ -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", diff --git a/brewtils/test/fixtures.py b/brewtils/test/fixtures.py index 8f940d9d..3996cc8b 100644 --- a/brewtils/test/fixtures.py +++ b/brewtils/test/fixtures.py @@ -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",