Skip to content

Commit

Permalink
Merge branch 'endgame-202205' into endgame-202205.next
Browse files Browse the repository at this point in the history
  • Loading branch information
wangmingliang-ms committed Jun 2, 2022
2 parents 0478161 + a1c9d27 commit bcd45f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected void resetFromConfig(@NotNull WebAppConfiguration configuration) {
final Runtime runtime = Optional.ofNullable(configuration.getModel()).map(IntelliJWebAppSettingModel::getRuntime).orElse(null);
final OperatingSystem operatingSystem = Optional.ofNullable(runtime).map(Runtime::getOperatingSystem).orElse(null);
final AppServicePlanConfig plan = AppServicePlanConfig.builder().subscriptionId(subscription.getId())
.resourceGroupName(rgName).region(region).os(operatingSystem).pricingTier(pricingTier).build();
.name(configuration.getAppServicePlanName()).resourceGroupName(rgName).region(region).os(operatingSystem).pricingTier(pricingTier).build();
final DeploymentSlotConfig slotConfig = !configuration.isDeployToSlot() ? null :
StringUtils.equals(configuration.getSlotName(), Constants.CREATE_NEW_SLOT) ?
DeploymentSlotConfig.builder().newCreate(true).name(configuration.getNewSlotName())
Expand Down

0 comments on commit bcd45f2

Please sign in to comment.