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

Commit 79d79c5

Browse files
pgtedaviddias
authored andcommitted
fix: config.replace (#634)
* Fixed config.replace. Should fix #633 * not expecting anuy response any more when sending one file * un-only test
1 parent a8b4ea6 commit 79d79c5

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

src/config/replace.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22

33
const streamifier = require('streamifier')
44
const promisify = require('promisify-es6')
5+
const SendOneFile = require('../utils/send-one-file')
56

67
module.exports = (send) => {
8+
const sendOneFile = SendOneFile(send, 'config/replace')
79
return promisify((config, callback) => {
810
if (typeof config === 'object') {
911
config = streamifier.createReadStream(Buffer.from(JSON.stringify(config)))
1012
}
1113

12-
send({
13-
path: 'config/replace',
14-
files: config,
15-
buffer: true
16-
}, callback)
14+
sendOneFile(config, {}, callback)
1715
})
1816
}

src/utils/send-one-file.js

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ module.exports = (send, path) => {
99
if (err) {
1010
return callback(err)
1111
}
12-
if (results.length !== 1) {
13-
return callback(new Error('expected 1 result and had ' + results.length))
14-
}
1512
callback(null, results[0])
1613
})
1714
}

0 commit comments

Comments
 (0)