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: 23edf4cf26107ce12a000cc13fd63f2488e82c2b2f633f41ac8a8a81ab3f1dfb
4
- data.tar.gz: c6f2e7936814535ff29759b3c72c2396128cae67310feca766060ac23d3d413c
3
+ metadata.gz: f929127e2a4e45dd88bde6fe1115b13651532fe5f9fa1a0c0112dbeba2111036
4
+ data.tar.gz: f9368bb61d59199f5d73ccd0634dbad6c2a7b06817d94bbdfe0ea50fd5357db7
5
5
  SHA512:
6
- metadata.gz: cb10853b53332370d2ef41d11b7ac4bb1415f0461e79588ce26f2afedcd6c7d2d88e02c11a3bc4f488489af0f46b1537b3ce20b35f991549fad80b18135a41cc
7
- data.tar.gz: 283e97a0d0129a7ea9813bcd8f911487ed55436c9c9d6588071ae261a14d56d82aef172b192823a3036b42da8b414503ed5e81ce4f9548397cf1b8d4d792b61d
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sbmt
4
4
  module Outbox
5
- VERSION = "7.0.0"
5
+ VERSION = "7.0.1"
6
6
  end
7
7
  end
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.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-04-03 00:00:00.000000000 Z
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.3.7
630
+ rubygems_version: 3.5.22
631
631
  signing_key:
632
632
  specification_version: 4
633
633
  summary: Outbox service