lhm-shopify 4.2.0 → 4.2.1
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/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/gemfiles/activerecord_6.1.gemfile.lock +1 -1
- data/gemfiles/activerecord_7.0.gemfile.lock +1 -1
- data/gemfiles/activerecord_7.1.gemfile.lock +1 -1
- data/lib/lhm/sql_retry.rb +15 -2
- data/lib/lhm/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dec22d00a0a019706b1a6d62e85e416caf210aa2d0b4f77bb3ccf562f1db8fb2
|
|
4
|
+
data.tar.gz: 181acf59e61b100dc3320b6674a7cd13a2a1dcf767c7259a88a58dbf4b826bf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c197de7b7658cdb9c31dd91adde7fdaf54505bc7e910812d8c80edf447f6266630c08a80d773391071c518f72b9527280e1ece7e2bdc00bc60d5a8c22f294ed
|
|
7
|
+
data.tar.gz: 6f1f7da4e1bd2e61fb8921eb9e724408d01ee576d98eb8ba393c2c2dada846368ec2a187e5c61d77f3691290edc815addd0e93acb8e1fa065c206564243ef798
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/lib/lhm/sql_retry.rb
CHANGED
|
@@ -186,13 +186,26 @@ module Lhm
|
|
|
186
186
|
def retriable_trilogy_errors
|
|
187
187
|
return unless defined?(Trilogy::BaseError)
|
|
188
188
|
|
|
189
|
-
{
|
|
189
|
+
errors = {
|
|
190
190
|
ActiveRecord::StatementInvalid => [
|
|
191
|
-
# Those sometimes appear as Trilogy::TimeoutError, and sometimes as ActiveRecord::StatementInvalid
|
|
192
191
|
/Lock wait timeout exceeded/,
|
|
192
|
+
/Timeout waiting for a response from the last query/,
|
|
193
|
+
/Deadlock found when trying to get lock/,
|
|
194
|
+
/Query execution was interrupted/,
|
|
195
|
+
/Lost connection to MySQL server during query/,
|
|
196
|
+
/Max connect timeout reached/,
|
|
197
|
+
/Unknown MySQL server host/,
|
|
198
|
+
/connection is locked to hostgroup/,
|
|
199
|
+
/The MySQL server is running with the --read-only option so it cannot execute this statement/,
|
|
193
200
|
],
|
|
194
201
|
Trilogy::ConnectionError => nil,
|
|
195
202
|
}
|
|
203
|
+
|
|
204
|
+
if ActiveRecord::VERSION::STRING >= "7.1"
|
|
205
|
+
errors[ActiveRecord::ConnectionFailed] = nil
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
errors
|
|
196
209
|
end
|
|
197
210
|
end
|
|
198
211
|
end
|
data/lib/lhm/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lhm-shopify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.2.
|
|
4
|
+
version: 4.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SoundCloud
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2024-03-
|
|
15
|
+
date: 2024-03-11 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: retriable
|