Skip to content

Commit 8c3e41e

Browse files
committed
Merge branch 'release-3.50.1' into release
2 parents d136d70 + efe040b commit 8c3e41e

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)