X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3453440f95dc76db1bd39fe8c85d9a898d474c6b..6762d1501f67860180045bbce3e63ef573d07fec:/services/api/lib/sweep_trashed_objects.rb diff --git a/services/api/lib/sweep_trashed_objects.rb b/services/api/lib/sweep_trashed_objects.rb index 162bebf513..8613c749cf 100644 --- a/services/api/lib/sweep_trashed_objects.rb +++ b/services/api/lib/sweep_trashed_objects.rb @@ -50,15 +50,13 @@ module SweepTrashedObjects update_all('is_trashed = true') # Sweep expired tokens - ApiClientAuthorization. - where("expires_at <= statement_timestamp()"). - destroy_all + ActiveRecord::Base.connection.execute("DELETE from api_client_authorizations where expires_at <= statement_timestamp()") end end def self.sweep_if_stale - return if Rails.configuration.trash_sweep_interval <= 0 - exp = Rails.configuration.trash_sweep_interval.seconds + return if Rails.configuration.Collections.TrashSweepInterval <= 0 + exp = Rails.configuration.Collections.TrashSweepInterval.seconds need = false Rails.cache.fetch('SweepTrashedObjects', expires_in: exp) do need = true