litestream 0.10.5-arm64-linux → 0.11.0-arm64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7eb6b48c7c6b6c067043e7db756be44a5ae6c3d6c67459e4094dc6bad6e421ae
4
- data.tar.gz: 69a31544927ef3b3467a7365561ef984c435c77d8b6bb1c3f872d8263343415b
3
+ metadata.gz: fe4a7fe2c8ed611bee31204971ea2955d7aee44e30e17cdbb8d4c486ee778c58
4
+ data.tar.gz: a94751034db71f6bcd898a9003109669976ea021889c43a9443385bfecc6e6fa
5
5
  SHA512:
6
- metadata.gz: '090ad623ad7a73f85df6dfe9d3809a5b038f09b11c6fd305266b1d0877794e672d0705eace3e22cde228e3f5f02ee24c6764d824e1c1bdf67122618132a7494b'
7
- data.tar.gz: c56a7b2bbb5aae099fa9d55ffb064ffbd784e023e1a99a6189a877e21f7ca945006a1d1f1ac667e2f5be3506ac5cefad2f09c9e8a5276395bd1506381bc17736
6
+ metadata.gz: 5392f5ec47544b2df1685a54a575cbcda6a3bc2c8f5ece9cf806f93520c889df5273f3510d26557676accd613cc38c236d40be2a14d93a823c1d9abaf438a2c5
7
+ data.tar.gz: b20ee04b48328c64023727659d8772912a70990567cdbe8e86573593860dfff7d3324aae99b186f4249d41d608f44339956c3194c588406de52d6df02d9d9911
@@ -0,0 +1,13 @@
1
+ require "active_job"
2
+
3
+ module Litestream
4
+ class VerificationJob < ActiveJob::Base
5
+ queue_as Litestream.queue
6
+
7
+ def perform
8
+ Litestream::Commands.databases.each do |db_hash|
9
+ Litestream.verify!(db_hash["path"])
10
+ end
11
+ end
12
+ end
13
+ end
@@ -1,3 +1,3 @@
1
1
  module Litestream
2
- VERSION = "0.10.5"
2
+ VERSION = "0.11.0"
3
3
  end
data/lib/litestream.rb CHANGED
@@ -23,6 +23,7 @@ module Litestream
23
23
 
24
24
  mattr_writer :username
25
25
  mattr_writer :password
26
+ mattr_writer :queue
26
27
 
27
28
  class << self
28
29
  def verify!(database_path)
@@ -51,7 +52,7 @@ module Litestream
51
52
  # use method instead of attr_accessor to ensure
52
53
  # this works if variable set after Litestream is loaded
53
54
  def username
54
- @username ||= ENV["LITESTREAM_USERNAME"] || @@username
55
+ @username ||= ENV["LITESTREAM_USERNAME"] || @@username || "litestream"
55
56
  end
56
57
 
57
58
  # use method instead of attr_accessor to ensure
@@ -60,6 +61,10 @@ module Litestream
60
61
  @password ||= ENV["LITESTREAM_PASSWORD"] || @@password
61
62
  end
62
63
 
64
+ def queue
65
+ @queue ||= ENV["LITESTREAM_QUEUE"] || @@queue || "default"
66
+ end
67
+
63
68
  def replicate_process
64
69
  info = {}
65
70
  if !`which systemctl`.empty?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: litestream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.5
4
+ version: 0.11.0
5
5
  platform: arm64-linux
6
6
  authors:
7
7
  - Stephen Margheim
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-19 00:00:00.000000000 Z
11
+ date: 2024-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logfmt
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: activejob
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rubyzip
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -95,6 +109,7 @@ files:
95
109
  - app/controllers/litestream/application_controller.rb
96
110
  - app/controllers/litestream/processes_controller.rb
97
111
  - app/controllers/litestream/restorations_controller.rb
112
+ - app/jobs/litestream/verification_job.rb
98
113
  - app/views/layouts/litestream/_style.html
99
114
  - app/views/layouts/litestream/application.html.erb
100
115
  - app/views/litestream/processes/show.html.erb