Skip to content

Commit

Permalink
bump version and revert change in scale rule name (#7053)
Browse files Browse the repository at this point in the history
  • Loading branch information
Greedygre committed Nov 30, 2023
1 parent e75bd15 commit 2c44907
Show file tree
Hide file tree
Showing 5 changed files with 505 additions and 370 deletions.
3 changes: 3 additions & 0 deletions src/containerapp/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Release History
===============
upcoming
++++++

0.3.46
++++++
* 'az containerapp create': Fix BadRequest Error about the clientType with --bind
* 'az containerapp update': Fix bug for --min-replicas is not set when the value is 0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def construct_payload(self):
e["value"] = ""

update_map = {}
update_map['scale'] = self.get_argument_min_replicas() is not None or self.get_argument_max_replicas() is not None or self.get_argument_scale_rule_name() is not None
update_map['scale'] = self.get_argument_min_replicas() is not None or self.get_argument_max_replicas() is not None or self.get_argument_scale_rule_name()
update_map['container'] = self._need_update_container()
update_map['ingress'] = self.get_argument_ingress() or self.get_argument_target_port()
update_map['registry'] = self.get_argument_registry_server() or self.get_argument_registry_user() or self.get_argument_registry_pass()
Expand Down
Loading

0 comments on commit 2c44907

Please sign in to comment.