aws_sqs_moniter 0.0.5 → 0.0.6

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: 550c96715bd56cbfeb0a312b216eb0af1edafdfe
4
- data.tar.gz: bb769ebbe4ba60eff541ba52c9e23baf0229cc82
3
+ metadata.gz: 7b2a948d7745f4518c5e686e0f4835a80986ede9
4
+ data.tar.gz: a7e2506908904d6abeb2d502a01acdd61658b31b
5
5
  SHA512:
6
- metadata.gz: 286c46e30cf6cd5a6484ce7c51a1a8f70f0539cef7969ea501b979e9a977c25f0292a1e7c008fcd4f019c6d36e4cd36b6573d6cb18bb140910b7ecab752be80b
7
- data.tar.gz: f38e0841b646d4a50c7643997a0acfd4f111f74ebad95b8b0d1972ebe87310aaba2e89ba98402f9e889a6053da495dfbb09ef9e66b2bff96de6379ae26fbc528
6
+ metadata.gz: c209b6f05c697d8af7b172eadea24e86ab06f899fa411894452e1f3954ef759882008a573d7061fe1c6f57464e59c3eb83b337e6b79b914844cb0ca3141d177d
7
+ data.tar.gz: a5930fa101feace53418b520b48310e9fca9c80c83290a084f5b643fee7bae60e6b960fe61d2a67261bb7e2852aa3e16951d5aecf51755f077b884c8958355f2
@@ -1,3 +1,3 @@
1
1
  module AwsSqsMoniter
2
- VERSION = '0.0.5'
2
+ VERSION = '0.0.6'
3
3
  end
@@ -6,6 +6,14 @@ class CreateDeadLetters < ActiveRecord::Migration
6
6
  t.string :sqs_id, null: false, index: { unique: true }
7
7
  t.string :message_id, null: false, index: true
8
8
  t.string :message, null: false
9
+
10
+ t.string :topic, null: false
11
+
12
+ t.integer :attempts, null: false, default: 0
13
+ t.datetime :attempted_at
14
+
15
+ t.string :processed_by
16
+ t.datetime :processed_at
9
17
  end
10
18
  end
11
19
  end
@@ -6,6 +6,14 @@ class CreateProcessedMessages < ActiveRecord::Migration
6
6
  t.string :message_id, null: false
7
7
  t.string :queue, null: false
8
8
  t.string :message, null: false
9
+
10
+ t.string :topic, null: false
11
+
12
+ t.integer :attempts, null: false, default: 0
13
+ t.datetime :attempted_at
14
+
15
+ t.string :processed_by
16
+ t.datetime :processed_at
9
17
 
10
18
  t.index %i(message_id queue), unique: true
11
19
  end
@@ -6,7 +6,9 @@ class CreatePublishedMessages < ActiveRecord::Migration
6
6
  t.string :topic, null: false
7
7
  t.string :message, null: false
8
8
  t.string :response
9
-
9
+ t.string :sqs_id, null: false, index: { unique: true }
10
+ t.string :message_id, null: false, index: true
11
+
10
12
  t.integer :attempts, null: false, default: 0
11
13
  t.datetime :attempted_at
12
14
 
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.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - saikiranmothe
@@ -237,7 +237,6 @@ 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~
241
240
  - lib/aws_sqs_moniter/configuration/redrive_policy_configuration.rb
242
241
  - lib/aws_sqs_moniter/configuration/validatable.rb
243
242
  - lib/aws_sqs_moniter/configuration/queue_configuration.rb
@@ -1,3 +0,0 @@
1
- module AwsSqsMoniter
2
- VERSION = '0.0.5'
3
- end