Skip to content

Commit e709f11

Browse files
author
Veetaha
committed
vscode: changed dns sanity-check url from google.com to example.com
1 parent 5d39f6d commit e709f11

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

editors/code/src/installation/language_server.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,13 @@ export async function ensureLanguageServerBinary(
105105
`GitHub repository: ${err.message}`
106106
);
107107

108-
dns.resolve('www.google.com').then(
109-
addrs => console.log("DNS resolution was successful", addrs),
108+
dns.resolve('example.com').then(
109+
addrs => console.log("DNS resolution for example.com was successful", addrs),
110110
err => {
111-
console.error("DNS resolution failed, there might be an issue with Internet availability");
111+
console.error(
112+
"DNS resolution for example.com failed, " +
113+
"there might be an issue with Internet availability"
114+
);
112115
console.error(err);
113116
}
114117
);

0 commit comments

Comments
 (0)