Skip to content

Commit 7d94bef

Browse files
Merge remote-tracking branch 'origin/endgame-june' into endgame-june.next
2 parents 02369e9 + 1cc2c35 commit 7d94bef

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void removeNode(String sid, String id, Node node) {
4545
@AzureOperation(name = "function.reload_all", type = AzureOperation.Type.ACTION)
4646
protected void refreshItems() {
4747
Azure.az(AzureAppService.class).functionApps(true)
48-
.stream().parallel().map(functionApp -> new FunctionAppNode(FunctionModule.this, functionApp))
48+
.stream().map(functionApp -> new FunctionAppNode(FunctionModule.this, functionApp))
4949
.forEach(this::addChildNode);
5050
}
5151

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ public void run() {
8181
@Override
8282
public void renderChildren(@NotNull final List<IWebApp> resourceExes) {
8383
resourceExes.stream()
84-
.parallel()
8584
.filter(webApp -> StringUtils.isNotEmpty(webApp.id()))
8685
.map(webApp -> new WebAppNode(this, webApp))
8786
.forEach(this::addChildNode);

0 commit comments

Comments
 (0)