asyncapi-server 1.3.0 → 1.3.2

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: d20ce991b75b2d975140fb6ec3d1a9dffb14116167bbcd072007ad7d3b15b9af
4
- data.tar.gz: e64c1c4061e6b85b320258d995636a402858f96dfe5b66e59b32541296f798c9
3
+ metadata.gz: 90b537a8a3a04c315e5ed15d9e4e2c002279834c99329bfccc0d6c43e2746fb4
4
+ data.tar.gz: 81c7bb59a652e5ac439907b916c13ac0bf1782831d020835bcb130354404e8f1
5
5
  SHA512:
6
- metadata.gz: 77bfca4c01e794d67678f942d89df08afa0f82f8c2b84ae08806e2e00f3cf3cdd67e02f36166952eddc5d6fbeb279fd36659d1df7f43e126713e020f7dbefe1d
7
- data.tar.gz: 9ef0745fcf8bcd1922f1bd997c6470b2ae05ab1f072e6a8f73e4b4df3d6f906394a2d9c5b464e016b2589370d2f7b3ab536ef2979f0bba3a4fbc5cf1993ac4ff
6
+ metadata.gz: e9991544c6ecf94cf62741bc1830d8282db8fc9a7301137bac4c1e77514b431c595b8799648501da595293ed0f9c2144902986366884c4337b816d186ee94810
7
+ data.tar.gz: 072d3710fa2243542cafc7623611abc2ce6fbc29c3f45cd48942151f52f3b1c395fd8dbc92276fa7ec72ce66f14f5d0f0b702df83254b3e1eac078997517a8a4
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -2,6 +2,7 @@ module Asyncapi
2
2
  module Server
3
3
  module V1
4
4
  class JobsController < ApplicationController # TODO: Asyncapi::Server.parent_controller
5
+ include ActiveModelSerializersFix
5
6
  include Rails::Pagination
6
7
 
7
8
  protect_from_forgery with: :null_session
@@ -0,0 +1,10 @@
1
+ module ActiveModelSerializersFix
2
+ def namespace_for_serializer
3
+ @namespace_for_serializer ||=
4
+ if Module.method_defined?(:parent)
5
+ self.class.parent unless self.class.parent == Object
6
+ else
7
+ self.class.module_parent unless self.class.module_parent == Object
8
+ end
9
+ end
10
+ end
@@ -24,6 +24,8 @@ module Asyncapi::Server
24
24
  def report_job_status(job_message)
25
25
  @response ||= Typhoeus.put(
26
26
  @job.callback_url,
27
+ timeout: 60,
28
+ connecttimeout: 60,
27
29
  body: {
28
30
  job: {
29
31
  status: @job.status,
@@ -17,7 +17,7 @@ module Asyncapi::Server
17
17
  raise e
18
18
  ensure
19
19
  if job
20
- job.update_attributes(status: job_status)
20
+ job.update(status: job_status)
21
21
  report_job_status(job, job_message)
22
22
  else
23
23
  # For some reason "ActiveRecord::Base.after_transaction",
@@ -2,10 +2,10 @@ module Asyncapi
2
2
  module Server
3
3
  module RailsExt
4
4
  module Controller
5
-
6
5
  extend ActiveSupport::Concern
7
6
 
8
7
  module ClassMethods
8
+
9
9
  def async(method_name, klass)
10
10
  define_method(method_name) do
11
11
  job = Job.create(job_params_with(klass.name))
@@ -1,5 +1,5 @@
1
1
  module Asyncapi
2
2
  module Server
3
- VERSION = "1.3.0"
3
+ VERSION = "1.3.2"
4
4
  end
5
5
  end
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -1,4 +1,5 @@
1
1
  class TestsController < ApplicationController
2
+ include ActiveModelSerializersFix
2
3
 
3
4
  async :create, Runner
4
5
 
Binary file
@@ -1,24 +1,23 @@
1
- # encoding: UTF-8
2
1
  # This file is auto-generated from the current state of the database. Instead
3
2
  # of editing this file, please use the migrations feature of Active Record to
4
3
  # incrementally modify your database, and then regenerate this schema definition.
5
4
  #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
5
+ # This file is the source Rails uses to define your schema when running `bin/rails
6
+ # db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
7
+ # be faster and is potentially less error prone than running all of your
8
+ # migrations from scratch. Old migrations may fail to apply correctly if those
9
+ # migrations use external dependencies or application code.
11
10
  #
12
11
  # It's strongly recommended that you check this file into your version control system.
13
12
 
14
- ActiveRecord::Schema.define(version: 20150201231018) do
13
+ ActiveRecord::Schema.define(version: 2015_02_01_231018) do
15
14
 
16
15
  create_table "asyncapi_server_jobs", force: :cascade do |t|
17
16
  t.integer "status"
18
- t.string "callback_url"
19
- t.string "class_name"
20
- t.text "params"
21
- t.string "secret"
17
+ t.string "callback_url"
18
+ t.string "class_name"
19
+ t.text "params"
20
+ t.string "secret"
22
21
  end
23
22
 
24
23
  end
Binary file
@@ -1,81 +1,79 @@
1
-  (1.8ms) SELECT sqlite_version(*)
2
-  (1.6ms) SELECT sqlite_version(*)
3
-  (1.3ms) SELECT sqlite_version(*)
4
-  (1.3ms) SELECT sqlite_version(*)
5
-  (1.7ms) SELECT sqlite_version(*)
6
-  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
7
-  (1.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
8
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1
+  (0.4ms) SELECT sqlite_version(*)
2
+  (0.0ms) SELECT sqlite_version(*)
3
+  (0.4ms) SELECT sqlite_version(*)
4
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
5
+  (0.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
6
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
9
7
  Migrating to CreateAsyncapiServerJobs (20141112034324)
10
- TRANSACTION (0.1ms) begin transaction
11
-  (0.6ms) CREATE TABLE "asyncapi_server_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "callback_url" varchar, "class_name" varchar, "params" text)
12
- ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141112034324"]]
13
- TRANSACTION (0.8ms) commit transaction
8
+ TRANSACTION (0.0ms) begin transaction
9
+  (0.2ms) CREATE TABLE "asyncapi_server_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "callback_url" varchar, "class_name" varchar, "params" text)
10
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141112034324"]]
11
+ TRANSACTION (0.3ms) commit transaction
14
12
  Migrating to AddSecretToAsyncapiServerJob (20141212064931)
15
- TRANSACTION (0.1ms) begin transaction
16
-  (0.6ms) ALTER TABLE "asyncapi_server_jobs" ADD "secret" varchar
17
- ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141212064931"]]
18
- TRANSACTION (1.3ms) commit transaction
13
+ TRANSACTION (0.0ms) begin transaction
14
+  (0.2ms) ALTER TABLE "asyncapi_server_jobs" ADD "secret" varchar
15
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141212064931"]]
16
+ TRANSACTION (0.2ms) commit transaction
19
17
  Migrating to AddExpiredAtToAsyncapiServerJob (20150130062520)
20
- TRANSACTION (0.1ms) begin transaction
21
-  (0.6ms) ALTER TABLE "asyncapi_server_jobs" ADD "expired_at" datetime
22
- Asyncapi::Server::Job Update All (0.2ms) UPDATE "asyncapi_server_jobs" SET "expired_at" = ? WHERE "asyncapi_server_jobs"."expired_at" IS NULL [["expired_at", "2021-03-19 08:45:14.167931"]]
23
- ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150130062520"]]
24
- TRANSACTION (0.8ms) commit transaction
18
+ TRANSACTION (0.0ms) begin transaction
19
+  (0.2ms) ALTER TABLE "asyncapi_server_jobs" ADD "expired_at" datetime
20
+ Asyncapi::Server::Job Update All (0.0ms) UPDATE "asyncapi_server_jobs" SET "expired_at" = ? WHERE "asyncapi_server_jobs"."expired_at" IS NULL [["expired_at", "2022-03-31 17:20:18.167919"]]
21
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150130062520"]]
22
+ TRANSACTION (0.2ms) commit transaction
25
23
  Migrating to DropExpiredAtFromAsyncapiServerJobs (20150201231018)
26
- TRANSACTION (0.1ms) begin transaction
27
-  (0.1ms) PRAGMA foreign_keys
28
-  (0.1ms) PRAGMA defer_foreign_keys
29
-  (0.1ms) PRAGMA defer_foreign_keys = ON
30
-  (0.1ms) PRAGMA foreign_keys = OFF
31
-  (1.3ms) CREATE TEMPORARY TABLE "aasyncapi_server_jobs" ("id" integer NOT NULL PRIMARY KEY, "status" integer DEFAULT NULL, "callback_url" varchar DEFAULT NULL, "class_name" varchar DEFAULT NULL, "params" text DEFAULT NULL, "secret" varchar DEFAULT NULL, "expired_at" datetime DEFAULT NULL)
32
-  (0.1ms) INSERT INTO "aasyncapi_server_jobs" ("id","status","callback_url","class_name","params","secret","expired_at")
24
+ TRANSACTION (0.0ms) begin transaction
25
+  (0.0ms) PRAGMA foreign_keys
26
+  (0.0ms) PRAGMA defer_foreign_keys
27
+  (0.0ms) PRAGMA defer_foreign_keys = ON
28
+  (0.0ms) PRAGMA foreign_keys = OFF
29
+  (0.0ms) CREATE TEMPORARY TABLE "aasyncapi_server_jobs" ("id" integer NOT NULL PRIMARY KEY, "status" integer DEFAULT NULL, "callback_url" varchar DEFAULT NULL, "class_name" varchar DEFAULT NULL, "params" text DEFAULT NULL, "secret" varchar DEFAULT NULL, "expired_at" datetime DEFAULT NULL)
30
+  (0.0ms) INSERT INTO "aasyncapi_server_jobs" ("id","status","callback_url","class_name","params","secret","expired_at")
33
31
  SELECT "id","status","callback_url","class_name","params","secret","expired_at" FROM "asyncapi_server_jobs"
34
-  (0.5ms) DROP TABLE "asyncapi_server_jobs"
35
-  (0.1ms) CREATE TABLE "asyncapi_server_jobs" ("id" integer NOT NULL PRIMARY KEY, "status" integer DEFAULT NULL, "callback_url" varchar DEFAULT NULL, "class_name" varchar DEFAULT NULL, "params" text DEFAULT NULL, "secret" varchar DEFAULT NULL)
36
-  (0.1ms) INSERT INTO "asyncapi_server_jobs" ("id","status","callback_url","class_name","params","secret")
32
+  (0.1ms) DROP TABLE "asyncapi_server_jobs"
33
+  (0.0ms) CREATE TABLE "asyncapi_server_jobs" ("id" integer NOT NULL PRIMARY KEY, "status" integer DEFAULT NULL, "callback_url" varchar DEFAULT NULL, "class_name" varchar DEFAULT NULL, "params" text DEFAULT NULL, "secret" varchar DEFAULT NULL)
34
+  (0.0ms) INSERT INTO "asyncapi_server_jobs" ("id","status","callback_url","class_name","params","secret")
37
35
  SELECT "id","status","callback_url","class_name","params","secret" FROM "aasyncapi_server_jobs"
38
-  (0.1ms) DROP TABLE "aasyncapi_server_jobs"
36
+  (0.0ms) DROP TABLE "aasyncapi_server_jobs"
39
37
   (0.0ms) PRAGMA defer_foreign_keys = 0
40
38
   (0.0ms) PRAGMA foreign_keys = 1
41
- ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150201231018"]]
42
- TRANSACTION (0.7ms) commit transaction
43
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
44
- TRANSACTION (0.1ms) begin transaction
45
- ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-03-09 08:45:14.199202"], ["updated_at", "2021-03-09 08:45:14.199202"]]
46
- TRANSACTION (0.7ms) commit transaction
47
-  (0.1ms) SELECT sqlite_version(*)
48
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
49
-  (1.8ms) SELECT sqlite_version(*)
50
-  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
51
-  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
52
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
53
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
54
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
55
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
56
-  (0.1ms) SELECT sqlite_version(*)
57
-  (0.1ms) SELECT sqlite_version(*)
58
-  (0.1ms) DROP TABLE IF EXISTS "asyncapi_server_jobs"
59
-  (1.2ms) CREATE TABLE "asyncapi_server_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "callback_url" varchar, "class_name" varchar, "params" text, "secret" varchar)
60
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
61
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
62
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (20150201231018)
63
-  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES
39
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150201231018"]]
40
+ TRANSACTION (0.2ms) commit transaction
41
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
42
+ TRANSACTION (0.0ms) begin transaction
43
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2022-03-21 17:20:18.173359"], ["updated_at", "2022-03-21 17:20:18.173359"]]
44
+ TRANSACTION (0.2ms) commit transaction
45
+  (0.0ms) SELECT sqlite_version(*)
46
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47
+  (0.4ms) SELECT sqlite_version(*)
48
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
49
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
50
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
51
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
52
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
53
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
54
+  (0.0ms) SELECT sqlite_version(*)
55
+  (0.0ms) SELECT sqlite_version(*)
56
+  (0.0ms) DROP TABLE IF EXISTS "asyncapi_server_jobs"
57
+  (0.4ms) CREATE TABLE "asyncapi_server_jobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "callback_url" varchar, "class_name" varchar, "params" text, "secret" varchar)
58
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
59
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
60
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES (20150201231018)
61
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
64
62
  (20141112034324),
65
63
  (20141212064931),
66
64
  (20150130062520);
67
65
 
68
66
  
69
-  (1.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
70
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
71
- TRANSACTION (0.1ms) begin transaction
72
- ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-03-09 08:46:17.185916"], ["updated_at", "2021-03-09 08:46:17.185916"]]
73
- TRANSACTION (0.7ms) commit transaction
74
- ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
67
+  (0.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
68
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
69
+ TRANSACTION (0.0ms) begin transaction
70
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2022-03-21 17:20:22.487005"], ["updated_at", "2022-03-21 17:20:22.487005"]]
71
+ TRANSACTION (0.2ms) commit transaction
72
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
75
73
  TRANSACTION (0.0ms) begin transaction
76
- ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-03-09 08:46:17.189623"], ["key", "environment"]]
77
- TRANSACTION (0.7ms) commit transaction
78
- ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
74
+ ActiveRecord::InternalMetadata Update (0.1ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2022-03-21 17:20:22.488003"], ["key", "environment"]]
75
+ TRANSACTION (0.2ms) commit transaction
76
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
79
77
  TRANSACTION (0.0ms) begin transaction
80
- ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "b156e6c6d273062fcb56e7a3782b664b02612fc5"], ["created_at", "2021-03-09 08:46:17.192636"], ["updated_at", "2021-03-09 08:46:17.192636"]]
81
- TRANSACTION (0.6ms) commit transaction
78
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "b156e6c6d273062fcb56e7a3782b664b02612fc5"], ["created_at", "2022-03-21 17:20:22.488753"], ["updated_at", "2022-03-21 17:20:22.488753"]]
79
+ TRANSACTION (0.2ms) commit transaction