Skip to content

Commit 5924625

Browse files
committed
Fix small wording issues
Signed-off-by: Wei Zhang <[email protected]>
1 parent 9198f1d commit 5924625

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/hdinsight/spark/ui/SparkSubmissionAdvancedConfigDialog.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,8 @@ private Subscription registerAsyncSshAuthCheck(PublishSubject<String> checkEvent
392392
// Verify the certificate
393393
SparkBatchDebugSession debugSession = SparkBatchDebugSession.factoryByAuth(clusterDetail.getConnectionUrl(),
394394
advConfModelToProbe)
395-
.open();
396-
397-
debugSession.verifyCertificate();
395+
.open()
396+
.verifyCertificate();
398397

399398
debugSession.close();
400399

Utils/hdinsight-node-common/src/com/microsoft/azure/hdinsight/spark/common/SparkBatchDebugSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class DebugUserInfo implements UserInfo {
6060

6161
@Override
6262
public String getPassphrase() {
63-
throw new NotImplementedException("SSH key pass phrase hasn't be supported yet");
63+
throw new NotImplementedException("SSH key pass phrase hasn't been supported yet");
6464
}
6565

6666
public void setPassword(@Nullable String password) {

0 commit comments

Comments
 (0)