Skip to content

Commit

Permalink
Merge pull request #117 from zeonin/master
Browse files Browse the repository at this point in the history
Fix DeploymentSpec serialize typo
  • Loading branch information
sebastienc committed Dec 20, 2017
2 parents 3771943 + 253415c commit c824e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes/models/v1beta1/DeploymentSpec.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def serialize(self):
if self.strategy is not None:
data['strategy'] = self.strategy.serialize()
if self.min_ready_seconds is not None:
data['minRedySeconds'] = self.min_ready_seconds
data['minReadySeconds'] = self.min_ready_seconds
if self.revision_history_limit is not None:
data['revisionHistoryLimit'] = self.revision_history_limit
if self.paused is not None:
Expand Down

0 comments on commit c824e4a

Please sign in to comment.