mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Listen on localhost only (#9997)
This commit is contained in:
@@ -80,7 +80,7 @@ export class SimpleWebServer {
|
|||||||
reject(new Error('Server closed'));
|
reject(new Error('Server closed'));
|
||||||
});
|
});
|
||||||
|
|
||||||
this.server.listen(0);
|
this.server.listen(0, '127.0.0.1');
|
||||||
});
|
});
|
||||||
|
|
||||||
const clearPortTimeout = () => {
|
const clearPortTimeout = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user