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

Commit 391351d

Browse files
dirkmcAlan Shaw
authored and
Alan Shaw
committed
fix: error handling for refs/refs local (#997)
* fix: error handling for refs/refs local * fix: ensure errors are passed back from stream-to-value * chore: update interface-ipfs-core
1 parent 84117a1 commit 391351d

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"dirty-chai": "^2.0.1",
8686
"eslint-plugin-react": "^7.11.1",
8787
"go-ipfs-dep": "0.4.19",
88-
"interface-ipfs-core": "~0.101.0",
88+
"interface-ipfs-core": "~0.101.1",
8989
"ipfsd-ctl": "~0.42.0",
9090
"nock": "^10.0.2",
9191
"stream-equal": "^1.1.1"

src/files-regular/refs-local-readable-stream.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ module.exports = (send) => {
1313
send({ path: 'refs/local', qs: opts }, (err, stream) => {
1414
if (err) { return pt.destroy(err) }
1515

16+
stream.once('error', (err) => pt.destroy(err))
17+
1618
pump(stream, through.obj(function (r, enc, cb) {
1719
cb(null, { ref: r.Ref, err: r.Err })
1820
}), pt)

src/files-regular/refs-readable-stream.js

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ module.exports = (send) => {
2020
send({ path: 'refs', args, qs: opts }, (err, stream) => {
2121
if (err) { return pt.destroy(err) }
2222

23+
stream.once('error', (err) => pt.destroy(err))
24+
2325
pump(stream, through.obj(function (r, enc, cb) {
2426
cb(null, { ref: r.Ref, err: r.Err })
2527
}), pt)

src/utils/stream-to-value.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ const concat = require('concat-stream')
77
Concatenate a stream to a single value.
88
*/
99
function streamToValue (response, callback) {
10+
let data
1011
pump(
1112
response,
12-
concat((data) => callback(null, data)),
13-
(err) => {
14-
if (err) {
15-
callback(err)
16-
}
17-
})
13+
concat((d) => { data = d }),
14+
(err) => callback(err, data)
15+
)
1816
}
1917

2018
module.exports = streamToValue

0 commit comments

Comments
 (0)