Skip to content

Commit

Permalink
Merge branch 'master' into feat/max_fetch_history_config
Browse files Browse the repository at this point in the history
  • Loading branch information
wooseung-sim authored Sep 11, 2024
2 parents 9aec3e0 + 22818c6 commit 8266611
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,8 @@ angular
command.viewState.useSimpleInstanceTypeSelector = isSimpleModeEnabled(command);
}

const ipv6AddressCount = _.get(launchTemplateData, 'networkInterfaces[0]');
const networkInterfaces = _.get(launchTemplateData, 'networkInterfaces[0]');
const ipv6AddressCount = (networkInterfaces as INetworkInterface)?.ipv6AddressCount ?? 0;

const asgSettings = AWSProviderSettings.serverGroups;
const isTestEnv = serverGroup.accountDetails && serverGroup.accountDetails.environment === 'test';
Expand Down

0 comments on commit 8266611

Please sign in to comment.