rsmp 0.13.3 → 0.13.4

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: a7fbae6ef01f7b0d6149360423fb4de524584cf74c7fbf1f5300ebd4115a43e3
4
- data.tar.gz: 879d0da2780de89a5ef563b62ca36c4728313389671da5e33d0011c94bba9dac
3
+ metadata.gz: c410efb6d18e7bc28184467c2e53f583d8a613126a620b62bfc623c84b3fb580
4
+ data.tar.gz: 8076d7f576d0f12e8c4e9279b81fb2df5bde8673ecc46b9f622332bec8896604
5
5
  SHA512:
6
- metadata.gz: 2e905d13e37c7af948dc978cbb84257aeb7d292e605f9f98238a81311eb2344e37a1b3699998c75bef81ce844bb28564cecc581c6a3410a2cce76c558e7d6c6c
7
- data.tar.gz: c2d737778d4e08f0c80a94af80953d47af23e93ca576ee9f468113c985b89221c8cf6a42bade00e99b5ded549bbe48fdb10541c8e721a061f4b5f8dac672036d
6
+ metadata.gz: aadb087f7b0340cae4efa3749171edca95c666366a523880748f47f4a7623a23f8dc69eb20092eded8d82333293deec6099620245e685723fa88fb07cc917f0c
7
+ data.tar.gz: a26c65aa7ba36d031f4f61f62c35a92e38517f4a627db47056dd7901d027975bac9baae1db0a08b963faffaf213986447f4874ecef9a4c9908f7429c119e7457
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rsmp (0.13.3)
4
+ rsmp (0.13.4)
5
5
  async (~> 1.29.1)
6
6
  async-io (~> 1.32.2)
7
7
  colorize (~> 0.8.1)
@@ -27,7 +27,7 @@ GEM
27
27
  builder (3.2.4)
28
28
  childprocess (4.1.0)
29
29
  colorize (0.8.1)
30
- console (1.15.0)
30
+ console (1.15.3)
31
31
  fiber-local
32
32
  contracts (0.17)
33
33
  cucumber (7.1.0)
data/lib/rsmp/proxy.rb CHANGED
@@ -644,11 +644,8 @@ module RSMP
644
644
  end
645
645
 
646
646
  def set_nts_message_attributes message
647
- return unless main
648
- ntsOId = main.ntsOId
649
- xNId = main.xNId
650
- message.attributes['ntsOId'] = ntsOId if ntsOId
651
- message.attributes['xNId'] = xNId if xNId
647
+ message.attributes['ntsOId'] = (main && main.ntsOId) ? main.ntsOId : ''
648
+ message.attributes['xNId'] = (main && main.xNId) ? main.xNId : ''
652
649
  end
653
650
  end
654
651
  end
data/lib/rsmp/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RSMP
2
- VERSION = "0.13.3"
2
+ VERSION = "0.13.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsmp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.3
4
+ version: 0.13.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emil Tin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-05-12 00:00:00.000000000 Z
11
+ date: 2022-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async