Skip to content

Commit f4f1ce1

Browse files
author
Vikas Agarwal
committed
Lint fix
1 parent 5446922 commit f4f1ce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/events/projects/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ async function projectUpdatedKafkaHandler(app, topic, payload) {
197197
// first get the existing document and than merge the updated changes and save the new document
198198
try {
199199
const doc = await eClient.get({ index: ES_PROJECT_INDEX, type: ES_PROJECT_TYPE, id: previousValue.id });
200-
console.log(doc._source, 'Received project from ES');
200+
console.log(doc._source, 'Received project from ES');// eslint-disable-line no-underscore-dangle
201201
const merged = _.merge(doc._source, project.get({ plain: true })); // eslint-disable-line no-underscore-dangle
202202
console.log(merged, 'Merged project');
203203
// update the merged document

0 commit comments

Comments
 (0)