Skip to content

Commit

Permalink
Merge pull request eBay#11 from john-liu/topics/hotfix
Browse files Browse the repository at this point in the history
bug-fix: fix job-scheduling error in scheduleSvc, whehre job.setJobTy…
  • Loading branch information
luzx02 authored Aug 24, 2016
2 parents ddd592c + 4b6b349 commit 604ae9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ void generateAllWaitingJobsRunningConfigs() {
new File(env.getProperty("job.local.folder")+File.separator+jobid).delete();
logger.info( "====================delete file done");

eachJob.setJobType(JobStatus.WAITING); // FIXME numeric issue???!!!
eachJob.setStatus(JobStatus.WAITING);
jobRepo.update(eachJob);
logger.info("====================udpate status done");
}
Expand Down

0 comments on commit 604ae9e

Please sign in to comment.