Skip to content

Commit

Permalink
change error to info message for create firewall rule dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
abist committed Dec 10, 2019
1 parent 0c701f4 commit e9ac9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/connectionUI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ export class ConnectionUI {
}

private async createFirewallRule(profile: IConnectionProfile, serverName: string, ipAddress: string): Promise<boolean> {
return this._vscodeWrapper.showErrorMessage(LocalizedConstants.msgPromptRetryFirewallRuleSignedIn, LocalizedConstants.createFirewallRuleLabel).then(async (result) => {
return this._vscodeWrapper.showInformationMessage(LocalizedConstants.msgPromptRetryFirewallRuleSignedIn, LocalizedConstants.createFirewallRuleLabel).then(async (result) => {
if (result === LocalizedConstants.createFirewallRuleLabel) {
const firewallService = this.connectionManager.firewallService;
let ipRange = await this.promptForIpAddress(ipAddress);
Expand Down

0 comments on commit e9ac9f7

Please sign in to comment.