Improved cleanup.
This commit is contained in:
parent
e2c66124fc
commit
ec46aca820
1 changed files with 2 additions and 1 deletions
|
@ -199,7 +199,7 @@ cleanup old online notifications
|
||||||
|
|
||||||
def self.cleanup
|
def self.cleanup
|
||||||
OnlineNotification.where('created_at < ?', Time.zone.now - 12.months).delete_all
|
OnlineNotification.where('created_at < ?', Time.zone.now - 12.months).delete_all
|
||||||
OnlineNotification.where('seen = ? AND created_at < ?', true, Time.zone.now - 4.months).delete_all
|
OnlineNotification.where('seen = ? AND created_at < ?', true, Time.zone.now - 2.days).delete_all
|
||||||
|
|
||||||
# notify all agents
|
# notify all agents
|
||||||
users = Ticket::ScreenOptions.agents
|
users = Ticket::ScreenOptions.agents
|
||||||
|
@ -211,6 +211,7 @@ cleanup old online notifications
|
||||||
data: {}
|
data: {}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
sleep 2 # slow down client requests
|
||||||
}
|
}
|
||||||
|
|
||||||
true
|
true
|
||||||
|
|
Loading…
Reference in a new issue