Save username/password for BDC HDFS connections (#12667)

* Save username/password for BDC HDFS connections

* comment
This commit is contained in:
Charles Gagnon
2020-09-30 08:40:20 -07:00
committed by GitHub
parent 82648fab3e
commit b3578d058f
3 changed files with 18 additions and 9 deletions

View File

@@ -255,7 +255,7 @@ export class SqlClusterSession {
public async getSqlClusterConnection(): Promise<SqlClusterConnection> {
if (!this._sqlClusterConnection) {
const sqlClusterConnectionParams = await getSqlClusterConnectionParams(this._sqlConnectionProfile);
const sqlClusterConnectionParams = await getSqlClusterConnectionParams(this._sqlConnectionProfile, this._appContext);
this._sqlClusterConnection = new SqlClusterConnection(sqlClusterConnectionParams);
}
return this._sqlClusterConnection;