Skip to content

Commit

Permalink
specify localhost for microsoft auth server
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt committed Jul 6, 2021
1 parent 51759b9 commit f4e48a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/microsoft-authentication/src/authServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function startServer(server: http.Server): Promise<string> {
reject(new Error('Closed'));
});

server.listen(0);
server.listen(0, '127.0.0.1');
});

port.then(cancelPortTimer, cancelPortTimer);
Expand Down

0 comments on commit f4e48a9

Please sign in to comment.