'Attach to' with Spark kernel resets to sql connection on cancelling connection dialog (#4024)

* Sql connection resets to Select Connection on cancelling dialog

* Hiding error message wehen cancel the connection dialog
This commit is contained in:
Raj
2019-02-14 16:39:23 -08:00
committed by GitHub
parent db1f412dae
commit b4d304c21e
4 changed files with 9 additions and 6 deletions

View File

@@ -69,7 +69,7 @@ export class NotebookModelStub implements INotebookModel {
changeKernel(displayName: string): void {
throw new Error('Method not implemented.');
}
changeContext(host: string, connection?: IConnectionProfile): Promise<void> {
changeContext(host: string, connection?: IConnectionProfile, hideErrorMessage?: boolean): Promise<void> {
throw new Error('Method not implemented.');
}
findCellIndex(cellModel: ICellModel): number {