Skip to content

Commit

Permalink
fix(ecs): set loadBalancedContainer to empty when creating new target…
Browse files Browse the repository at this point in the history
…GroupMappings (bp #8224) (#8227)
  • Loading branch information
mergify[bot] committed May 1, 2020
1 parent 130ce4d commit edadcc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export class Container extends React.Component<IContainerProps, IContainerState>
containerPort: cmd.containerPort,
});
cmd.targetGroup = '';
cmd.loadBalancedContainer = '';
}

cmd.targetGroupMappings = uniqWith(defaultTargetGroup, isEqual);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export class TaskDefinition extends React.Component<ITaskDefinitionProps, ITaskD
containerPort: cmd.containerPort,
});
cmd.targetGroup = '';
cmd.loadBalancedContainer = '';
}

cmd.targetGroupMappings = uniqWith(defaultTargetGroup, isEqual);
Expand Down

0 comments on commit edadcc6

Please sign in to comment.