Skip to content

Commit 8e3aafe

Browse files
committed
Fix create rudunt resource group in create web app task
1 parent 12c4796 commit 8e3aafe

File tree

1 file changed

+0
-2
lines changed
  • PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-appservice-java/src/main/java/com/microsoft/azure/toolkit/intellij/appservice/task

1 file changed

+0
-2
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-appservice-java/src/main/java/com/microsoft/azure/toolkit/intellij/appservice/task/CreateWebAppTask.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ public void execute() throws Exception {
5252
webAppConfig.subscriptionId(subscription.getId());
5353
webAppConfig.runtime(RuntimeConfig.fromRuntime(WebAppRuntime.getDefaultJavaseRuntime()));
5454

55-
final String rgName = Utils.generateRandomResourceName(String.format("rg-%s", name), 90);
56-
webAppConfig.resourceGroup(rgName);
5755
final WebAppBase<?, ?, ?> webApp = WebAppService.getInstance().createWebApp(webAppConfig);
5856
context.applyResult(WEBAPP_ID, webApp.getId());
5957
context.applyResult(RESOURCE_GROUP, webApp.getResourceGroupName());

0 commit comments

Comments
 (0)