Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
liyaqin1 committed Nov 17, 2023
1 parent 9cde65c commit 940df39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy-agent/deployd/types/deploy_goal.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, jsonValue=None):
self.envId = jsonValue.get('envId')
self.envName = jsonValue.get('envName')
self.stageName = jsonValue.get('stageName')
self.stageName = jsonValue.get('stageType')
self.stageType = jsonValue.get('stageType')
# TODO: Only used for migration, should remove later
if isinstance(jsonValue.get('deployStage'), int):
self.deployStage = DeployStage._VALUES_TO_NAMES[jsonValue.get('deployStage')]
Expand Down

0 comments on commit 940df39

Please sign in to comment.