Skip to content

Commit ee8399e

Browse files
Merge remote-tracking branch 'origin/endgame-june' into endgame-june.next
2 parents 3e7406a + f0d4a8c commit ee8399e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/function/runner/deploy/FunctionDeploymentState.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ private List<FunctionEntity> listFunctions(final IFunctionApp functionApp) {
229229
AzureMessager.getMessager().info(SYNCING_TRIGGERS_AND_FETCH_FUNCTION_INFORMATION);
230230
return Mono.fromCallable(() -> {
231231
functionApp.syncTriggers();
232-
return functionApp.listFunctions();
232+
return functionApp.listFunctions(true);
233233
}).retryWhen(Retry.withThrowable(flux ->
234234
flux.zipWith(Flux.range(1, LIST_TRIGGERS_MAX_RETRY + 1), (throwable, count) -> {
235235
if (count < LIST_TRIGGERS_MAX_RETRY) {

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/webapp/runner/webappconfig/slimui/WebAppDeployViewPresenterSlim.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public void onLoadDeploymentSlots(final WebAppComboBoxModel selectedWebApp) {
2525
return;
2626
}
2727
unsubscribeSubscription(loadSlotsSubscription);
28-
loadSlotsSubscription = Observable.fromCallable(() -> Azure.az(AzureAppService.class).webapp(selectedWebApp.getResourceId()).deploymentSlots())
28+
loadSlotsSubscription = Observable.fromCallable(() -> Azure.az(AzureAppService.class).webapp(selectedWebApp.getResourceId()).deploymentSlots(true))
2929
.subscribeOn(getSchedulerProvider().io())
3030
.subscribe(slots -> DefaultLoader.getIdeHelper().invokeLater(() -> {
3131
if (slots == null || isViewDetached()) {

Utils/azure-explorer-common/src/com/microsoft/tooling/msservices/serviceexplorer/azure/function/FunctionsNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public FunctionsNode(@Nonnull final Node parent, @Nonnull final IFunctionApp fun
2929
@Override
3030
@AzureOperation(name = "function.refresh", type = AzureOperation.Type.ACTION)
3131
protected void refreshItems() {
32-
functionApp.listFunctions().stream()
32+
functionApp.listFunctions(true).stream()
3333
.map(envelope -> new FunctionNode(envelope, functionApp, this))
3434
.forEach(this::addChildNode);
3535
setName(CollectionUtils.isEmpty(childNodes) ? NAME + EMPTY_POSTFIX : NAME);

Utils/azure-explorer-common/src/com/microsoft/tooling/msservices/serviceexplorer/azure/webapp/deploymentslot/DeploymentSlotModulePresenter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class DeploymentSlotModulePresenter<V extends DeploymentSlotModuleView> e
1212
public void onRefreshDeploymentSlotModule(final String subscriptionId, final String webAppId) {
1313
final DeploymentSlotModuleView view = getMvpView();
1414
if (view != null) {
15-
view.renderDeploymentSlots(AzureWebAppMvpModel.getInstance().getAzureAppServiceClient(subscriptionId).webapp(webAppId).deploymentSlots());
15+
view.renderDeploymentSlots(AzureWebAppMvpModel.getInstance().getAzureAppServiceClient(subscriptionId).webapp(webAppId).deploymentSlots(true));
1616
}
1717
}
1818

0 commit comments

Comments
 (0)