Skip to content

Commit 282c151

Browse files
Error on startup (#370)
Co-authored-by: Kartik Gupta <[email protected]>
1 parent 4a3d10c commit 282c151

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/databricks-vscode/src/configuration/ConnectionManager.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,7 @@ export class ConnectionManager {
123123
} catch (e: any) {
124124
const message = `Can't login to Databricks: ${e.message}`;
125125
NamedLogger.getOrCreate("Extension").error(message, e);
126-
if (interactive) {
127-
window.showErrorMessage(message);
128-
}
126+
window.showErrorMessage(message);
129127

130128
this.updateState("DISCONNECTED");
131129
await this.logout();

0 commit comments

Comments
 (0)