aws_sqs_moniter 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 993c2db5fbc966460a77a681f41fa309c6e32562
4
- data.tar.gz: 46a5ed6d1d3d024fb4cf2b78919f07e782ba8a2f
3
+ metadata.gz: 550c96715bd56cbfeb0a312b216eb0af1edafdfe
4
+ data.tar.gz: bb769ebbe4ba60eff541ba52c9e23baf0229cc82
5
5
  SHA512:
6
- metadata.gz: 93b8925089ff210e52f6fdd5b988ea74f9f2cc9f42028feee992fed067be631558138cea689498c85969c6efad107c32baea5a134e273c2ecf024087f895825c
7
- data.tar.gz: 471b65d4f5911c797343f167107fe1559587a6d129900e7cfd602999d26cda95f557a16d585bb3f34356c7ad86c7d38328547203dfa38e47c8efacb888491cd2
6
+ metadata.gz: 286c46e30cf6cd5a6484ce7c51a1a8f70f0539cef7969ea501b979e9a977c25f0292a1e7c008fcd4f019c6d36e4cd36b6573d6cb18bb140910b7ecab752be80b
7
+ data.tar.gz: f38e0841b646d4a50c7643997a0acfd4f111f74ebad95b8b0d1972ebe87310aaba2e89ba98402f9e889a6053da495dfbb09ef9e66b2bff96de6379ae26fbc528
@@ -1,3 +1,3 @@
1
1
  module AwsSqsMoniter
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
@@ -0,0 +1,3 @@
1
+ module AwsSqsMoniter
2
+ VERSION = '0.0.5'
3
+ end
@@ -4,8 +4,8 @@ class CreateDeadLetters < ActiveRecord::Migration
4
4
  t.timestamps
5
5
 
6
6
  t.string :sqs_id, null: false, index: { unique: true }
7
- t.uuid :message_id, null: false, index: true
8
- t.json :message, null: false
7
+ t.string :message_id, null: false, index: true
8
+ t.string :message, null: false
9
9
  end
10
10
  end
11
11
  end
@@ -3,9 +3,9 @@ class CreateProcessedMessages < ActiveRecord::Migration
3
3
  create_table :processed_messages, id: :uuid do |t|
4
4
  t.timestamps
5
5
 
6
- t.uuid :message_id, null: false
6
+ t.string :message_id, null: false
7
7
  t.string :queue, null: false
8
- t.json :message, null: false
8
+ t.string :message, null: false
9
9
 
10
10
  t.index %i(message_id queue), unique: true
11
11
  end
@@ -4,8 +4,8 @@ class CreatePublishedMessages < ActiveRecord::Migration
4
4
  t.timestamps
5
5
 
6
6
  t.string :topic, null: false
7
- t.json :message, null: false
8
- t.json :response
7
+ t.string :message, null: false
8
+ t.string :response
9
9
 
10
10
  t.integer :attempts, null: false, default: 0
11
11
  t.datetime :attempted_at
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws_sqs_moniter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - saikiranmothe
@@ -237,6 +237,7 @@ files:
237
237
  - lib/aws_sqs_moniter/middleware/server/active_record/idempotence.rb
238
238
  - lib/aws_sqs_moniter/middleware/server/active_record/connection_pool.rb
239
239
  - lib/aws_sqs_moniter/configuration.rb
240
+ - lib/aws_sqs_moniter/version.rb~
240
241
  - lib/aws_sqs_moniter/configuration/redrive_policy_configuration.rb
241
242
  - lib/aws_sqs_moniter/configuration/validatable.rb
242
243
  - lib/aws_sqs_moniter/configuration/queue_configuration.rb