Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 0de4d32

Browse files
authored
Merge pull request #77 from ipfs/fix/interop-dial-blacklist
fix: interop dial blacklist
2 parents b220149 + 8a362c6 commit 0de4d32

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

test/ipns-pubsub.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ const config = {
2323
API: '/ip4/0.0.0.0/tcp/0',
2424
Gateway: '/ip4/0.0.0.0/tcp/0',
2525
Swarm: []
26+
},
27+
Discovery: {
28+
MDNS: {
29+
Enabled: false
30+
},
31+
webRTCStar: {
32+
Enabled: false
33+
}
2634
}
2735
}
2836

@@ -33,7 +41,10 @@ const spawnJsDaemon = (callback) => {
3341
.spawn({
3442
disposable: true,
3543
args: ['--enable-namesys-pubsub'], // enable ipns over pubsub
36-
config
44+
config: {
45+
...config,
46+
Bootstrap: []
47+
}
3748
}, callback)
3849
}
3950

0 commit comments

Comments
 (0)