Skip to content

Commit 5f675bf

Browse files
committed
Update refresh strategy
1 parent 314c354 commit 5f675bf

File tree

1 file changed

+1
-1
lines changed
  • PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/appservice/serviceplan

1 file changed

+1
-1
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/appservice/serviceplan/ServicePlanComboBox.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ protected List<? extends AppServicePlanEntity> loadItems() throws Exception {
114114
.collect(Collectors.toList()));
115115
}
116116
final List<AppServicePlanEntity> remotePlans = Azure.az(AzureAppService.class)
117-
.subscription(subscription.getId()).appServicePlans(true).stream().map(IAppServicePlan::entity)
117+
.subscription(subscription.getId()).appServicePlans().stream().map(IAppServicePlan::entity)
118118
.collect(Collectors.toList());
119119
plans.addAll(remotePlans);
120120
Stream<AppServicePlanEntity> stream = plans.stream();

0 commit comments

Comments
 (0)