Skip to content

Commit 9be9ffb

Browse files
lerouxbaddaleax
andauthored
Update packages/oidc-mock-provider/src/index.ts
Co-authored-by: Anna Henningsen <[email protected]>
1 parent e27380c commit 9be9ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/oidc-mock-provider/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class OIDCMockProvider {
109109
private async init(): Promise<this> {
110110
this.httpServer.listen(
111111
this.config.port ?? 0,
112-
this.config.bindIpAll ? '::,0.0.0.0' : this.config.hostname
112+
this.config.bindIpAll ? '::' : this.config.hostname
113113
);
114114
await once(this.httpServer, 'listening');
115115
const { port } = this.httpServer.address() as AddressInfo;

0 commit comments

Comments
 (0)