Class: Litestream::VerificationJob

Inherits:
ActiveJob::Base
  • Object
show all
Defined in:
app/jobs/litestream/verification_job.rb

Instance Method Summary collapse

Instance Method Details

#performObject



7
8
9
10
11
# File 'app/jobs/litestream/verification_job.rb', line 7

def perform
  Litestream::Commands.databases.each do |db_hash|
    Litestream.verify!(db_hash["path"])
  end
end