Skip to content

Commit efe040b

Browse files
authored
Merge pull request #5026 from microsoft/hanxiao/wording
Fix mysql connection notification wording
2 parents 7f80b68 + 2e95d38 commit efe040b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/link/LinkMySQLToModuleDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ private void doLink(LinkConfig<MySQLResourceConfig, ModuleResourceConfig> linkCo
101101
final ProgressIndicator indicator = ProgressManager.getInstance().getProgressIndicator();
102102
indicator.setIndeterminate(true);
103103
AzureLinkService.getInstance().link(project, linkConfig, finalStorageResource);
104-
final String message = String.format("The connection between database %s and project %s has been successfully created.",
105-
resourceConfig.getDatabase().name(), project.getName());
104+
final String message = String.format("The connection between database (%s/%s) and project (%s) has been successfully created.",
105+
resourceConfig.getServer().name(), resourceConfig.getDatabase().name(), project.getName());
106106
DefaultLoader.getUIHelper().showInfoNotification(LinkMySQLAction.ACTION_NAME, message);
107107
};
108108
final IAzureOperationTitle title = AzureOperationBundle.title("azure-mysql.azure-mysql-link-to-module");

0 commit comments

Comments
 (0)