1. 08 9月, 2018 1 次提交
  2. 20 8月, 2018 1 次提交
    • B
      Allow `:queue` option to `perform_enqueued_jobs`. · ec2e8f64
      bogdanvlviv 提交于
      If the `:queue` option is specified, then only the job(s) enqueued to
      a specific queue will be performed.
      
      Example:
      ```
      def test_perform_enqueued_jobs_with_queue
        perform_enqueued_jobs queue: :some_queue do
          MyJob.set(queue: :some_queue).perform_later(1, 2, 3) # will be performed
          HelloJob.set(queue: :other_queue).perform_later(1, 2, 3) # will not be performed
        end
        assert_performed_jobs 1
      end
      ```
      
      Follow up #33265
      
      [bogdanvlviv & Jeremy Daer]
      ec2e8f64
  3. 09 8月, 2018 1 次提交
  4. 24 7月, 2018 1 次提交
  5. 20 3月, 2018 1 次提交
    • A
      Remove support for Qu gem. · 6ef72079
      Alberto Almagro 提交于
      Reasons are that the Qu gem wasn't compatible since Rails 5.1,
      gem development was stopped in 2014 and maintainers have
      confirmed its demise. See issue #32273
      6ef72079
  6. 14 12月, 2017 1 次提交
  7. 24 11月, 2017 1 次提交
    • J
      Improve DelayedJob wrapper logging · b1fbb668
      Jacek Lachowski 提交于
      ActiveJob wraps every adapter into its own class, that is later passed
      into DelayedJob which is responsible for displaying all the logs.
      
      This change improves the logging so we can easily trace executed
      jobs and see meaningful information in the logs.
      b1fbb668
  8. 19 8月, 2017 1 次提交
  9. 18 7月, 2017 1 次提交
  10. 11 7月, 2017 1 次提交
  11. 10 7月, 2017 1 次提交
  12. 02 7月, 2017 1 次提交
  13. 01 7月, 2017 1 次提交
  14. 16 3月, 2017 1 次提交
  15. 31 1月, 2017 1 次提交
  16. 29 10月, 2016 1 次提交
  17. 19 8月, 2016 1 次提交
  18. 07 8月, 2016 2 次提交
  19. 28 7月, 2016 1 次提交
  20. 10 6月, 2016 1 次提交
  21. 01 3月, 2016 1 次提交
  22. 13 2月, 2016 1 次提交
  23. 28 1月, 2016 2 次提交
  24. 06 10月, 2015 1 次提交
  25. 18 9月, 2015 1 次提交
  26. 26 8月, 2015 1 次提交
  27. 13 8月, 2015 1 次提交
  28. 08 5月, 2015 4 次提交
  29. 05 5月, 2015 1 次提交
  30. 29 4月, 2015 1 次提交
  31. 24 3月, 2015 2 次提交
  32. 12 3月, 2015 1 次提交
  33. 24 2月, 2015 2 次提交