You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var job = gearman.submitJob("someworker", data);
job.on("error", function(error) {
// this doesn't work when WORK_EXCEPTION is returned by worker
// works well when worker return WORK_FAIL
});
The text was updated successfully, but these errors were encountered:
How I should handle WORK_EXCEPTION? Problem:
var job = gearman.submitJob("someworker", data);
job.on("error", function(error) {
// this doesn't work when WORK_EXCEPTION is returned by worker
// works well when worker return WORK_FAIL
});
The text was updated successfully, but these errors were encountered: