diff --git a/PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.hdinsight/src/com/microsoft/azuretools/hdinsight/spark/ui/SparkSubmissionExDialog.java b/PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.hdinsight/src/com/microsoft/azuretools/hdinsight/spark/ui/SparkSubmissionExDialog.java index 383bb8a9f6..fbb215c226 100644 --- a/PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.hdinsight/src/com/microsoft/azuretools/hdinsight/spark/ui/SparkSubmissionExDialog.java +++ b/PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.hdinsight/src/com/microsoft/azuretools/hdinsight/spark/ui/SparkSubmissionExDialog.java @@ -149,8 +149,8 @@ protected Control createContents(Composite parent) { clustersListComboBox.setToolTipText( "The HDInsight Spark cluster you want to submit your application to. Only Linux cluster is supported."); for (IClusterDetail clusterDetail : cachedClusterDetails) { - clustersListComboBox.add(clusterDetail.getName()); - clustersListComboBox.setData(clusterDetail.getName(), clusterDetail); + clustersListComboBox.add(clusterDetail.getTitle()); + clustersListComboBox.setData(clusterDetail.getTitle(), clusterDetail); } if (cachedClusterDetails.size() > 0) { clustersListComboBox.select(0);