Fix regeneration marker not expiring (#6290)
* Fix regeneration key not getting expired * Add rake task to remove old regeneration markers
This commit is contained in:
parent
d799921c75
commit
9b3b40df66
3 changed files with 16 additions and 1 deletions
|
@ -69,6 +69,12 @@ describe ApplicationController, type: :controller do
|
|||
expect(RegenerationWorker).to have_received(:perform_async)
|
||||
end
|
||||
|
||||
it 'sets the regeneration marker to expire' do
|
||||
allow(RegenerationWorker).to receive(:perform_async)
|
||||
get :show
|
||||
expect(Redis.current.ttl("account:#{user.account_id}:regeneration")).to be >= 0
|
||||
end
|
||||
|
||||
it 'regenerates feed when sign in is older than two weeks' do
|
||||
get :show
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue