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 = [
9898 }
9999
100100 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` ,
102102 } ) ) ;
103103 // bulk index
104104 eClient . bulk ( {
@@ -111,7 +111,9 @@ module.exports = [
111111 logger . error ( `Error in indexing project (projectId: ${ projectIdStart } -${ projectIdEnd } )` , error ) ;
112112 } ) ;
113113 } ) . 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 ) ;
115117 } ) ;
116118 } )
117119 . catch ( err => next ( err ) ) ;
You can’t perform that action at this time.
0 commit comments