sbmt-outbox 7.0.0 → 7.0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f929127e2a4e45dd88bde6fe1115b13651532fe5f9fa1a0c0112dbeba2111036
|
|
4
|
+
data.tar.gz: f9368bb61d59199f5d73ccd0634dbad6c2a7b06817d94bbdfe0ea50fd5357db7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4e3b29dc6495d129aa8beac3e99d5f5bff4fd07891775192c761556ea25f24fbf2471f88ab173ec2efc3106210a8b036545ce26c6c552ecc8699a0464a1d6f1
|
|
7
|
+
data.tar.gz: ada7866bbef15b69b85b5fc7572a305f0ab0d9b603a3d8cf97ca91f4e6802e54d69c841f6ae414d1080eca7f7c890979fc6c0e8f2009874e2608322706af5af8
|
|
@@ -18,13 +18,15 @@ module Sbmt
|
|
|
18
18
|
transaction = start_transaction(scope, job)
|
|
19
19
|
|
|
20
20
|
begin
|
|
21
|
-
yield
|
|
21
|
+
result = yield
|
|
22
22
|
rescue
|
|
23
23
|
finish_sentry_transaction(scope, transaction, 500)
|
|
24
24
|
raise
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
finish_sentry_transaction(scope, transaction, 200)
|
|
28
|
+
|
|
29
|
+
result
|
|
28
30
|
end
|
|
29
31
|
|
|
30
32
|
private
|
|
@@ -22,7 +22,7 @@ module Sbmt
|
|
|
22
22
|
span&.set_data(:item_id, item.id)
|
|
23
23
|
|
|
24
24
|
begin
|
|
25
|
-
yield
|
|
25
|
+
result = yield
|
|
26
26
|
rescue
|
|
27
27
|
finish_span(span, 500)
|
|
28
28
|
finish_sentry_transaction(scope, transaction, 500) if new_transaction
|
|
@@ -31,6 +31,8 @@ module Sbmt
|
|
|
31
31
|
|
|
32
32
|
finish_span(span, 200)
|
|
33
33
|
finish_sentry_transaction(scope, transaction, 200) if new_transaction
|
|
34
|
+
|
|
35
|
+
result
|
|
34
36
|
end
|
|
35
37
|
|
|
36
38
|
private
|
data/lib/sbmt/outbox/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sbmt-outbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.
|
|
4
|
+
version: 7.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sbermarket Ruby-Platform Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|
|
@@ -627,7 +627,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
627
627
|
- !ruby/object:Gem::Version
|
|
628
628
|
version: '0'
|
|
629
629
|
requirements: []
|
|
630
|
-
rubygems_version: 3.
|
|
630
|
+
rubygems_version: 3.5.22
|
|
631
631
|
signing_key:
|
|
632
632
|
specification_version: 4
|
|
633
633
|
summary: Outbox service
|