acidic_job 0.1.2 → 0.1.3
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/acidic_job.rb +0 -4
- data/lib/acidic_job/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62d9233935caa3f86b25ae851b5039dbc6fc3ca29365acceb9e2fb6c50a37e84
|
|
4
|
+
data.tar.gz: 17488a81beea742db0f5e2ef24f40c11e43e89199e1986d95882313dc2cf5f64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1634b63e1d1a6552f1f3c4615ac8376b9b055d2812a8b1e3018ba8f3297121c04f7a3c41e53b17fdfa30c0d01878183074c730907139b02cd3c4567ec5eb51ef
|
|
7
|
+
data.tar.gz: 2d4837e2ac68315de5e6ab60b757f10cc26244de1294956f4b6834f2552062487b7969a28758a6770815c3e352e4573f8da22d65ebafe53589459580f2140560
|
data/Gemfile.lock
CHANGED
data/lib/acidic_job.rb
CHANGED
|
@@ -119,10 +119,6 @@ module AcidicJob
|
|
|
119
119
|
ActiveRecord::Base.transaction(isolation: :read_uncommitted) do
|
|
120
120
|
phase_result = phase_callable.call
|
|
121
121
|
|
|
122
|
-
raise UnknownAtomicPhaseType unless phase_result.is_a?(NoOp) ||
|
|
123
|
-
phase_result.is_a?(RecoveryPoint) ||
|
|
124
|
-
phase_result.is_a?(Response)
|
|
125
|
-
|
|
126
122
|
# TODO: why is this here?
|
|
127
123
|
key ||= @key
|
|
128
124
|
phase_result.call(key: key)
|
data/lib/acidic_job/version.rb
CHANGED