File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ module.exports = [
98
98
}
99
99
100
100
res . status ( 200 ) . json ( util . wrapResponse ( req . id , {
101
- message : `Reindex request successfully submitted for ${ body . length / 2 } projects`
101
+ message : `Reindex request successfully submitted for ${ body . length / 2 } projects` ,
102
102
} ) ) ;
103
103
// bulk index
104
104
eClient . bulk ( {
@@ -111,7 +111,9 @@ module.exports = [
111
111
logger . error ( `Error in indexing project (projectId: ${ projectIdStart } -${ projectIdEnd } )` , error ) ;
112
112
} ) ;
113
113
} ) . catch ( ( error ) => {
114
- logger . error ( `Error in getting project details for indexing (projectId: ${ projectIdStart } -${ projectIdEnd } )` , error ) ;
114
+ logger . error (
115
+ `Error in getting project details for indexing (projectId: ${ projectIdStart } -${ projectIdEnd } )` ,
116
+ error ) ;
115
117
} ) ;
116
118
} )
117
119
. catch ( err => next ( err ) ) ;
You can’t perform that action at this time.
0 commit comments