diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-01-17 23:56:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 23:56:03 +0100 |
commit | 7badad7797b487b411a2ab34e0f7413741974bb4 (patch) | |
tree | a0bf564a945c3dace68815b4be8aa1ca8cb14e1b /app/workers | |
parent | 59797ee233db88db047773294225eb8c8701adb7 (diff) |
Fix home regeneration (#6251)
* Fix regeneration marker not being removed after completion * Return HTTP 206 from /api/v1/timelines/home if regeneration in progress Prioritize RegenerationWorker by putting it into default queue * Display loading indicator and poll home timeline while it regenerates * Add graphic to regeneration message * Make "not found" indicator consistent with home regeneration
Diffstat (limited to 'app/workers')
-rw-r--r-- | app/workers/regeneration_worker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/regeneration_worker.rb b/app/workers/regeneration_worker.rb index 8cee21ae1..5c6a040bd 100644 --- a/app/workers/regeneration_worker.rb +++ b/app/workers/regeneration_worker.rb @@ -3,7 +3,7 @@ class RegenerationWorker include Sidekiq::Worker - sidekiq_options queue: 'pull', backtrace: true, unique: :until_executed + sidekiq_options unique: :until_executed def perform(account_id, _ = :home) account = Account.find(account_id) |