We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ef9ad0 commit e24e4d3Copy full SHA for e24e4d3
src/events/projects/index.js
@@ -21,7 +21,7 @@ const eClient = util.getElasticSearchClient();
21
* @param {Object} msg event payload which is essentially a project in JSON format
22
* @returns {undefined}
23
*/
24
-const indexProject = Promise.coroutine(function* (logger, msg) { // eslint-disable-line func-names, no-unused-vars
+const indexProject = Promise.coroutine(function* (logger, msg) { // eslint-disable-line func-names
25
const data = JSON.parse(msg.content.toString());
26
const userIds = data.members ? data.members.map(single => `userId:${single.userId}`) : [];
27
try {
0 commit comments