Skip to content

Commit

Permalink
fix(azuredevops): fix unexpected environment field in cicd_tasks and …
Browse files Browse the repository at this point in the history
…cicd_pipelines (#7022)
  • Loading branch information
d4x1 authored and action_bot committed Feb 26, 2024
1 parent ceb5f27 commit 05549ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/python/pydevlake/pydevlake/domain_layer/devops.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class CICDPipeline(DomainModel, table=True):
queued_duration_sec: Optional[float]

type: Optional[CICDType]
environment: Optional[CICDEnvironment]
environment: Optional[str]


class CiCDPipelineCommit(NoPKModel, table=True):
Expand Down Expand Up @@ -100,7 +100,7 @@ class CICDTask(DomainModel, table=True):
original_result: Optional[str]

type: Optional[CICDType]
environment: Optional[CICDEnvironment]
environment: Optional[str]

created_date: Optional[datetime]
queued_date: Optional[datetime]
Expand Down

0 comments on commit 05549ff

Please sign in to comment.