messaging 4.0.0.pre → 4.0.1.pre

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: 04daa6dc85f15f5b160d49512f00a50d4fc378a8f597250ba07a5ea33955a26b
4
- data.tar.gz: 45b51d553a5bc2b34381e553d741a5ba5c7e4cf4707ba5da727381fb73c8ca41
3
+ metadata.gz: 890880412ffa587c9b553e88d7b9ccf192de0bc6d465629b2b81ab499affd239
4
+ data.tar.gz: 73a9c88db9f865def6150d53001d37222ef1c05576f36250511fbf825482c0f1
5
5
  SHA512:
6
- metadata.gz: a5f69b09408a3df46b9dc22f984c0588cc9276bfa530a5a86abc0d3759eba732fc596c4af5fa66f10d7f33a713723222460aa2c4ae0c3368625dbc8d6316fdee
7
- data.tar.gz: fdf6cf4254e2cb44e255b41dde00b31edeec9c565e448fe000f6a63d0a2551a1ef766df4e96a268f01fb576a125d9b76a266e6996349d4c6f807b25c121e3ab8
6
+ metadata.gz: bb9fd10c0f1434ba2e129c7b9c71b302abd8164186b84f8b5db95ce9b76fd61b2f0052298f2abd33fa7b19cc916924aa42a02fec4254823c96eab7dd85b46255
7
+ data.tar.gz: 4c1acafd63dc4dd6160813b0fb38f30aa597c70daf70b1c2703fc530fbfbf5905efff67ad19d811cb1696e4b4decc226c2b662f5b15c83c9795ae3583175f815
@@ -66,7 +66,7 @@ module Messaging
66
66
 
67
67
  def fetch_messages
68
68
  SerializedMessage.in_category(categories)
69
- .with_transction_id_lower_than_any_currently_running_transaction
69
+ .with_transaction_id_lower_than_any_currently_running_transaction
70
70
  .newer_than(last_processed_transaction_id, last_processed_position)
71
71
  .order(:id)
72
72
  .limit(1000)
@@ -10,7 +10,7 @@ module Messaging
10
10
  where(stream_category: Array(categories).map(&:to_s))
11
11
  end
12
12
 
13
- def self.with_transction_id_lower_than_any_currently_running_transaction
13
+ def self.with_transaction_id_lower_than_any_currently_running_transaction
14
14
  where('transaction_id < pg_snapshot_xmin(pg_current_snapshot())')
15
15
  end
16
16
 
@@ -1,3 +1,3 @@
1
1
  module Messaging
2
- VERSION = '4.0.0.pre'.freeze
2
+ VERSION = '4.0.1.pre'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: messaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.pre
4
+ version: 4.0.1.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bukowskis