This commit is contained in:
parent
35f3097b8e
commit
1eb0efe2a2
@ -477,21 +477,23 @@ module.exports = (app, client) => {
|
||||
}, { asStream: true, meta: false }),
|
||||
instancescomment = [],
|
||||
block_count = 0,
|
||||
pipeline = chain([
|
||||
parser(),
|
||||
pick({ filter: 'hits.hits' }),
|
||||
streamArray(),
|
||||
data => {
|
||||
block_count++
|
||||
instancescomment.push({
|
||||
instance: data.value._source.instance, comment: data.value._source.blocks.find(block => block.domain === clean(req.params.instance)).comment
|
||||
})
|
||||
}
|
||||
])
|
||||
pipeline = chain([
|
||||
parser(),
|
||||
pick({ filter: 'hits.hits' }),
|
||||
streamArray(),
|
||||
data => {
|
||||
block_count++
|
||||
instancescomment.push({
|
||||
instance: data.value._source.instance, comment: data.value._source.blocks.find(block => block.domain === clean(req.params.instance)).comment
|
||||
})
|
||||
}
|
||||
])
|
||||
result.pipe(pipeline)
|
||||
res.json({
|
||||
block_count,
|
||||
instances: instancescomment
|
||||
pipeline.on('end', () => {
|
||||
res.json({
|
||||
block_count,
|
||||
instances: instancescomment
|
||||
})
|
||||
})
|
||||
} else {
|
||||
res.status(404).end()
|
||||
|
Loading…
Reference in New Issue
Block a user