Skip to content

Commit c2825d6

Browse files
authored
reordering advanced options (#18217)
1 parent ffeccb1 commit c2825d6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/connectionconfig/connectionDialogWebviewController.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ export class ConnectionDialogWebviewController extends ReactWebviewPanelControll
159159
],
160160
topAdvancedOptions: [
161161
"port",
162-
"connectTimeout",
162+
"applicationName",
163163
// TODO: 'autoDisconnect',
164164
// TODO: 'sslConfiguration',
165-
"applicationName",
166-
"replication",
165+
"connectTimeout",
166+
"multiSubnetFailover",
167167
],
168168
groupedAdvancedOptions: {}, // computed below
169169
};
@@ -211,6 +211,8 @@ export class ConnectionDialogWebviewController extends ReactWebviewPanelControll
211211
private async loadEmptyConnection() {
212212
const emptyConnection = {
213213
authenticationType: AuthenticationType.SqlLogin,
214+
connectTimeout: 15, // seconds
215+
applicationName: "vscode-mssql",
214216
} as IConnectionDialogProfile;
215217
this.state.connectionProfile = emptyConnection;
216218
}

0 commit comments

Comments
 (0)