Skip to content

Commit

Permalink
Add errno entry to exc_info in core.get_jobs schema (#14077)
Browse files Browse the repository at this point in the history
A recent change to exc_info dictionary inside core.get_jobs output
was not reflected in the returns decorator schema.
  • Loading branch information
anodos325 authored Jul 25, 2024
1 parent ba20ef2 commit f4f470e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/middlewared/middlewared/service/core_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ def __job_by_credential_and_id(self, credential, job_id):
'exc_info',
Str('repr', null=True),
Str('type', null=True),
Int('errno', null=True),
Any('extra', null=True),
null=True
),
Expand Down

0 comments on commit f4f470e

Please sign in to comment.