Skip to content

Commit

Permalink
fix: missing required value for field display_title (#7460)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeizn committed May 13, 2024
1 parent 26a0c83 commit 1b8a187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/python/plugins/azuredevops/azuredevops/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ def __str__(self) -> str:
result: Optional[BuildResult]
source_branch: str
source_version: str
display_title: str = Field(source='/triggerInfo/ci.message')
url: str = Field(source='/_links/web/href')
display_title: Optional[str] = Field(source='/triggerInfo/ci.message')
url: Optional[str] = Field(source='/_links/web/href')


class Job(ToolModel, table=True):
Expand Down

0 comments on commit 1b8a187

Please sign in to comment.