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