Skip to content

Commit 87f4fe6

Browse files
authored
Merge pull request #5268 from microsoft/bugfix-common-resource-anno
fix the wrong annotation after model change
2 parents 64f8f21 + 38fc9ba commit 87f4fe6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/appservice/insights/ApplicationInsightsComboBox.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void setValue(final ApplicationInsightsConfig insightsConfig) {
5151
@Override
5252
@AzureOperation(
5353
name = "ai.list.subscription",
54-
params = {"this.subscription.subscriptionId()"},
54+
params = {"this.subscription.getId()"},
5555
type = AzureOperation.Type.SERVICE
5656
)
5757
protected List<? extends ApplicationInsightsConfig> loadItems() throws Exception {

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/lib/mysql/AzureMySQLService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static AzureMySQLService getInstance() {
4747
name = "mysql.create",
4848
params = {
4949
"config.getServerName()",
50-
"config.getSubscription().displayName()"
50+
"config.getSubscription().getName()"
5151
},
5252
type = AzureOperation.Type.SERVICE
5353
)

0 commit comments

Comments
 (0)