Skip to content

Commit

Permalink
fix(titus/pipeline): Set backingData before accessing it (#8711)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshm committed Nov 7, 2020
1 parent 03194e7 commit ac5b7bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ export class TitusServerGroupConfigurationService {
} else {
backingData.filtered.regions = credentialsKeyedByAccount[cmd.credentials]?.regions ?? [];
}
backingData.filtered.securityGroups = this.getRegionalSecurityGroups(cmd);
cmd.backingData = backingData;
backingData.filtered.securityGroups = this.getRegionalSecurityGroups(cmd);

let securityGroupRefresher: PromiseLike<any> = $q.when();
if (cmd.securityGroups && cmd.securityGroups.length) {
Expand Down

0 comments on commit ac5b7bc

Please sign in to comment.