Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit a57a411

Browse files
author
Alan Shaw
authored
feat: pubsub unsubscribe all (#956)
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent d1e99e7 commit a57a411

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.aegir.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
},
1313
karma: {
1414
files: [{
15-
pattern: 'node_modules/interface-ipfs-core/js/test/fixtures/**/*',
15+
pattern: 'node_modules/interface-ipfs-core/test/fixtures/**/*',
1616
watched: false,
1717
served: true,
1818
included: false

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
"cross-env": "^5.2.0",
8383
"dirty-chai": "^2.0.1",
8484
"eslint-plugin-react": "^7.11.1",
85-
"go-ipfs-dep": "~0.4.18",
86-
"interface-ipfs-core": "~0.96.0",
87-
"ipfsd-ctl": "github:ipfs/js-ipfsd-ctl",
85+
"go-ipfs-dep": "~0.4.19",
86+
"interface-ipfs-core": "~0.99.0",
87+
"ipfsd-ctl": "~0.42.0",
8888
"nock": "^10.0.2",
8989
"pull-stream": "^3.6.9",
9090
"stream-equal": "^1.1.1"

src/pubsub.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,11 @@ module.exports = (arg) => {
7777
return setImmediate(() => callback(err))
7878
}
7979

80-
ps.removeListener(topic, handler)
80+
if (!handler && !callback) {
81+
ps.removeAllListeners(topic)
82+
} else {
83+
ps.removeListener(topic, handler)
84+
}
8185

8286
// Drop the request once we are actually done
8387
if (ps.listenerCount(topic) === 0) {

test/get.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('.get (specific go-ipfs features)', function () {
2323

2424
const smallFile = {
2525
cid: 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP',
26-
data: fixture('js/test/fixtures/testfile.txt')
26+
data: fixture('test/fixtures/testfile.txt')
2727
}
2828

2929
let ipfsd

test/interface.spec.js

+4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ describe('interface-ipfs-core tests', () => {
7272
{
7373
name: 'should get by CID string + path',
7474
reason: 'FIXME vmx 2018-02-22: Currently not supported in go-ipfs, it might be possible once https://github.com/ipfs/go-ipfs/issues/4728 is done'
75+
},
76+
{
77+
name: 'should get only a CID, due to resolving locally only',
78+
reason: 'FIXME: go-ipfs does not support localResolve option'
7579
}
7680
]
7781
})

0 commit comments

Comments
 (0)