mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
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:
@@ -8,7 +8,7 @@ describe DiscourseSingleSignOn do
|
||||
SiteSetting.sso_url = @sso_url
|
||||
SiteSetting.enable_sso = true
|
||||
SiteSetting.sso_secret = @sso_secret
|
||||
run_jobs_synchronously!
|
||||
Jobs.run_immediately!
|
||||
end
|
||||
|
||||
def make_sso
|
||||
|
||||
Reference in New Issue
Block a user