1. 13 12月, 2019 7 次提交
  2. 12 12月, 2019 3 次提交
  3. 11 12月, 2019 11 次提交
  4. 10 12月, 2019 17 次提交
  5. 09 12月, 2019 2 次提交
    • R
      c1281417
    • E
      Fix ActiveJob logging when callback chain is halted: · 0d3aec49
      Edouard CHIN 提交于
      - ### Problem
      
        ActiveJob will always log "Enqueued MyJob (Job ID) ..." even
        if the job doesn't get enqueued through the adapter.
        Same problem happens when performing a Job, "Performed MyJob (Job ID) ..." will be logged even when job wasn't performed at all.
        This situation can happen either if the callback chain is terminated
        (before_enqueue throwing an `abort`) or if an exception is raised.
      
        ### Solution
      
        Check if the callback chain is aborted/exception is raised, and  log accordingly.
      0d3aec49