Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 74467c6

Browse files
committedJun 25, 2020
Debug #179
1 parent 0e7947b commit 74467c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/common/helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ function * fetchFromES (query, resource, parentSpan) {
236236
// Construct ES filter
237237
const filter = prepESFilter(query, resource)
238238
// Search with constructed filter
239-
console.log(yield esClient.indices.getMapping({ index: 'submission-index' }))
239+
console.log(JSON.stringify(yield esClient.indices.getMapping({ index: 'submission-index' })))
240240
const docs = yield esClient.search(filter)
241241
// Extract data from hits
242242
const rows = _.map(docs.hits.hits, single => single._source)

0 commit comments

Comments
 (0)
Please sign in to comment.