Skip to content

Commit

Permalink
Merge pull request #512 from Chris-playground/511
Browse files Browse the repository at this point in the history
[Fix][DataSource] fix Impala connection failure (#511)
  • Loading branch information
xxzuo authored Feb 14, 2025
2 parents bab98b6 + 4aec75d commit dd31be1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ protected String getSeparator() {

@Override
public String getJdbcUrl() {
String jdbcUrl = super.getJdbcUrl();
return jdbcUrl + ";auth=noSasl";
return super.getJdbcUrl();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ protected String getUrl(Map<String, Object> parameter) {
address.append(";").append(properties);
}

address.append(";auth=noSasl");
return address.toString();
}
}

0 comments on commit dd31be1

Please sign in to comment.