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 +4 -4
- data/lib/aws_sqs_moniter/version.rb +1 -1
- data/lib/aws_sqs_moniter/version.rb~ +3 -0
- data/lib/generators/aws_sqs_moniter/templates/create_dead_letters_migration.rb +2 -2
- data/lib/generators/aws_sqs_moniter/templates/create_processed_messages_migration.rb +2 -2
- data/lib/generators/aws_sqs_moniter/templates/create_published_messages_migration.rb +2 -2
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 550c96715bd56cbfeb0a312b216eb0af1edafdfe
|
4
|
+
data.tar.gz: bb769ebbe4ba60eff541ba52c9e23baf0229cc82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 286c46e30cf6cd5a6484ce7c51a1a8f70f0539cef7969ea501b979e9a977c25f0292a1e7c008fcd4f019c6d36e4cd36b6573d6cb18bb140910b7ecab752be80b
|
7
|
+
data.tar.gz: f38e0841b646d4a50c7643997a0acfd4f111f74ebad95b8b0d1972ebe87310aaba2e89ba98402f9e889a6053da495dfbb09ef9e66b2bff96de6379ae26fbc528
|
@@ -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.
|
8
|
-
t.
|
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.
|
6
|
+
t.string :message_id, null: false
|
7
7
|
t.string :queue, null: false
|
8
|
-
t.
|
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.
|
8
|
-
t.
|
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
|
+
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
|