Skip to content

Commit

Permalink
Merge branch 'dev' into remove-retry-redirect-popup
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-arroyo authored Aug 27, 2024
2 parents 3d26d29 + 11e8677 commit 66611c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Use '127.0.0.1' for the host when spinning up local loopback server",
"packageName": "@azure/msal-node",
"email": "[email protected]",
"dependentChangeType": "patch"
}
2 changes: 1 addition & 1 deletion lib/msal-node/src/network/LoopbackClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class LoopbackClient implements ILoopbackClient {
resolve(authCodeResponse);
}
);
this.server.listen(0); // Listen on any available port
this.server.listen(0, '127.0.0.1'); // Listen on any available port
}
);
}
Expand Down

0 comments on commit 66611c3

Please sign in to comment.