File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -30,17 +30,19 @@ JobQueue.prototype.doJob = function (name, data) {
30
30
this . queue . add ( name , data ) . then ( job => {
31
31
32
32
const completed = ( result ) => {
33
- // event data is alwasy passed as the result of JSON.stringify
33
+ // event data is always passed as the result of JSON.stringify
34
34
// We need to attempt to JSON.parse it
35
35
// NOTE: even if the result of the job is a String it's still given to JSON.stringify,
36
36
// which wraps the string in quotes, but JSON.parse must still be called to unwrap
37
37
// the quotes surrounding the original String
38
38
try {
39
39
result = JSON . parse ( result ) ;
40
40
} catch ( err ) {
41
- console . error ( err ) ;
42
- console . log ( '\ncould not `JSON.parse` job result ' + job . id + '\n' ) ;
43
- console . log ( result ) ;
41
+ if ( process . env . DEBUG === 'bullrack' ) {
42
+ console . error ( err ) ;
43
+ console . log ( '\ncould not `JSON.parse` job result ' + job . id + '\n' ) ;
44
+ console . log ( result ) ;
45
+ }
44
46
}
45
47
resolve ( result ) ;
46
48
@@ -49,6 +51,7 @@ JobQueue.prototype.doJob = function (name, data) {
49
51
} ;
50
52
51
53
const failed = ( err ) => {
54
+ // It seems that Bull passes the error as a string
52
55
if ( typeof err === 'string' ) err = new Error ( err ) ;
53
56
54
57
reject ( err ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bullrack" ,
3
- "version" : " 0.0.1 " ,
3
+ "version" : " 0.0.2 " ,
4
4
"description" : " Wraps Bull.js with and API that returns the result of a specific job" ,
5
5
"main" : " jobQueue.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments