REFACTOR: Move queue_jobs out of SiteSetting

It is not a setting, and only relevant in specs. The new API is:

```
Jobs.run_later!        # jobs will be thrown on the queue
Jobs.run_immediately!  # jobs will run right away, avoid the queue
```
This commit is contained in:
Robin Ward
2019-03-14 10:47:38 -04:00
parent f3c76ad482
commit fa5a158683
40 changed files with 75 additions and 72 deletions

View File

@@ -55,7 +55,7 @@ end
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
SiteSetting.queue_jobs = false
Jobs.run_immediately!
unless Rails.env == "profile"
puts "This script should only be used in the profile environment"