nulogy_message_bus_producer 5.0.7 → 5.0.8

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
  SHA256:
3
- metadata.gz: 036eea7176338f4c2a13313706144eaf0399db0a3ee0f5eb00e834041acbc358
4
- data.tar.gz: 0d872f484f66967b952de3cb7646fc2723632a0730a85b54206c26a754bae946
3
+ metadata.gz: a600264babf1f0380876a09557a79764be123299c00253e402e5ef7d98f64e46
4
+ data.tar.gz: 5b78225f85d9ec35fe4ce62b0db8b5627fd0fc1e6e79bcc055dc100c11688cf5
5
5
  SHA512:
6
- metadata.gz: ca2c15972d588377f6a26cff073a1515a91208363eef139289bf3ba5e0d20cf6f6404af97d77e536363942b93fa0486cd6b77ba1af81ca5e68bf86d9e3488883
7
- data.tar.gz: 8209b4b7ce3daea8325679343b0336110627f4015ef85705bb71bee85fd682f3d77b1ace195085c1e93d9b66522e303e91cad42ff5041bea5f4edf7804f044d1
6
+ metadata.gz: 3fdff5d519c24a6a8efedac72ea7c7b6506070b09539af147124a6306a7360786dc2cfa0c57ed7cc9e62e25ab9f07beacdd80e9a3db92adcb6a96e6327b4e48e
7
+ data.tar.gz: d20c4c543de847920fed9fce99f64668204c6da2c575a69f3d501d3869900bbafacf9793fdb9345cd1b9590f361135abe13f30de106662e7b0cf641b77cab221
@@ -1,3 +1,3 @@
1
1
  module NulogyMessageBusProducer
2
- VERSION = "5.0.7".freeze
2
+ VERSION = "5.0.8".freeze
3
3
  end
@@ -0,0 +1,97 @@
1
+  (137.4ms) CREATE DATABASE "nulogy_message_bus_producer_development" ENCODING = 'utf8'
2
+  (2.3ms) CREATE DATABASE "nulogy_message_bus_producer_test" ENCODING = 'utf8'
3
+ SQL (1.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
+ SQL (5.3ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
5
+  (1.5ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
6
+  (8.2ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
7
+  (4.1ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
8
+  (1.9ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
9
+  (6.2ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
10
+  (3.7ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
11
+  (5.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
12
+  (2.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
13
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
14
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES
15
+ (20200611150212),
16
+ (20201005150212);
17
+
18
+ 
19
+  (6.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
20
+ ActiveRecord::InternalMetadata Load (1.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
21
+ TRANSACTION (1.1ms) BEGIN
22
+ ActiveRecord::InternalMetadata Create (1.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-04-07 16:26:22.104222"], ["updated_at", "2022-04-07 16:26:22.104222"]]
23
+ TRANSACTION (1.8ms) COMMIT
24
+ ActiveRecord::InternalMetadata Load (1.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
25
+ ActiveRecord::InternalMetadata Load (2.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
26
+ TRANSACTION (1.4ms) BEGIN
27
+ ActiveRecord::InternalMetadata Create (1.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "2d5bee88577a387c3beb2618b50260b1d5b2a437"], ["created_at", "2022-04-07 16:26:22.122926"], ["updated_at", "2022-04-07 16:26:22.122926"]]
28
+ TRANSACTION (1.9ms) COMMIT
29
+ SQL (1.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
30
+ SQL (6.3ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
31
+  (1.3ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
32
+  (9.5ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
33
+  (6.0ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
34
+  (1.5ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
35
+  (6.7ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
36
+  (3.8ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
37
+  (6.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
38
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
40
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES
41
+ (20200611150212),
42
+ (20201005150212);
43
+
44
+ 
45
+  (5.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
46
+ ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
47
+ TRANSACTION (1.2ms) BEGIN
48
+ ActiveRecord::InternalMetadata Create (1.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-04-07 16:26:22.251574"], ["updated_at", "2022-04-07 16:26:22.251574"]]
49
+ TRANSACTION (1.9ms) COMMIT
50
+ ActiveRecord::InternalMetadata Load (1.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
51
+ TRANSACTION (1.1ms) BEGIN
52
+ ActiveRecord::InternalMetadata Update (1.9ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2022-04-07 16:26:22.265298"], ["key", "environment"]]
53
+ TRANSACTION (2.0ms) COMMIT
54
+ ActiveRecord::InternalMetadata Load (1.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
55
+ TRANSACTION (1.2ms) BEGIN
56
+ ActiveRecord::InternalMetadata Create (1.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "2d5bee88577a387c3beb2618b50260b1d5b2a437"], ["created_at", "2022-04-07 16:26:22.277148"], ["updated_at", "2022-04-07 16:26:22.277148"]]
57
+ TRANSACTION (2.1ms) COMMIT
58
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
59
+  (3.7ms) CREATE DATABASE "nulogy_message_bus_producer_development" ENCODING = 'utf8'
60
+  (1.7ms) CREATE DATABASE "nulogy_message_bus_producer_test" ENCODING = 'utf8'
61
+  (4.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
62
+  (2.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
63
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
64
+  (1.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
65
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66
+  (1.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
67
+ SQL (3.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
68
+ SQL (1.4ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
69
+  (14.5ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
70
+  (25.0ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
71
+  (3.3ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
72
+  (2.6ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
73
+  (4.9ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
74
+  (3.5ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
75
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
76
+ ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
77
+ ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
78
+ ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
79
+ SQL (2.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
80
+ SQL (1.4ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
81
+  (10.4ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
82
+  (20.8ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
83
+  (3.5ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
84
+  (3.5ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
85
+  (6.1ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
86
+  (3.2ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
87
+  (2.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
88
+ ActiveRecord::InternalMetadata Load (2.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
89
+ TRANSACTION (1.4ms) BEGIN
90
+ ActiveRecord::InternalMetadata Update (2.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2024-01-16 15:59:19.055018"], ["key", "environment"]]
91
+ TRANSACTION (1.6ms) COMMIT
92
+ ActiveRecord::InternalMetadata Load (1.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
93
+ TRANSACTION (1.4ms) BEGIN
94
+ ActiveRecord::InternalMetadata Update (1.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2024-01-16 15:59:19.068152"], ["key", "environment"]]
95
+ TRANSACTION (1.9ms) COMMIT
96
+ ActiveRecord::InternalMetadata Load (1.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
97
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC