Skip to content

Commit

Permalink
fix(titus): Do not check for autoscaling feature flag, always enable …
Browse files Browse the repository at this point in the history
…autoscaling (#8615)
  • Loading branch information
christopherthielen committed Oct 2, 2020
1 parent 2c4a272 commit 7400d6f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Expand Up @@ -135,7 +135,7 @@ <h3 class="horizontal middle space-between flex-1" select-on-dbl-click>
></titus-service-job-processes-section>
</collapsible-section>

<collapsible-section heading="Scaling Policies" ng-if="ctrl.scalingPoliciesEnabled">
<collapsible-section heading="Scaling Policies">
<titus-scaling-policy-summary
ng-repeat="policy in serverGroup.scalingPolicies"
policy="policy"
Expand Down
Expand Up @@ -207,12 +207,6 @@ angular
this.awsAccountId = awsDetails.accountId;
this.env = awsDetails.environment;
});
if (
details.autoscalingEnabled &&
details.regions.some(r => r.name === serverGroup.region && r.autoscalingEnabled)
) {
this.scalingPoliciesEnabled = true;
}
});

const configureEntityTagTargets = () => {
Expand Down

0 comments on commit 7400d6f

Please sign in to comment.