hey_doctor 1.0.0

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.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +97 -0
  4. data/Rakefile +10 -0
  5. data/app/services/hey_doctor/check_application_health_service.rb +29 -0
  6. data/app/services/hey_doctor/check_database_health_service.rb +43 -0
  7. data/app/services/hey_doctor/check_redis_health_service.rb +31 -0
  8. data/lib/hey_doctor.rb +22 -0
  9. data/lib/hey_doctor/engine.rb +10 -0
  10. data/lib/hey_doctor/version.rb +5 -0
  11. data/lib/tasks/hey_doctor_tasks.rake +5 -0
  12. data/spec/dummy/Rakefile +6 -0
  13. data/spec/dummy/app/assets/config/manifest.js +1 -0
  14. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  16. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  18. data/spec/dummy/app/controllers/home_controller.rb +5 -0
  19. data/spec/dummy/app/javascript/packs/application.js +15 -0
  20. data/spec/dummy/app/jobs/application_job.rb +7 -0
  21. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  22. data/spec/dummy/app/models/application_record.rb +3 -0
  23. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  24. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  25. data/spec/dummy/bin/rails +4 -0
  26. data/spec/dummy/bin/rake +4 -0
  27. data/spec/dummy/bin/setup +33 -0
  28. data/spec/dummy/config.ru +11 -0
  29. data/spec/dummy/config/application.rb +42 -0
  30. data/spec/dummy/config/boot.rb +5 -0
  31. data/spec/dummy/config/cable.yml +10 -0
  32. data/spec/dummy/config/database.yml +21 -0
  33. data/spec/dummy/config/environment.rb +5 -0
  34. data/spec/dummy/config/environments/development.rb +66 -0
  35. data/spec/dummy/config/environments/production.rb +113 -0
  36. data/spec/dummy/config/environments/test.rb +59 -0
  37. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  38. data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
  39. data/spec/dummy/config/initializers/cors.rb +16 -0
  40. data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  41. data/spec/dummy/config/initializers/inflections.rb +16 -0
  42. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  43. data/spec/dummy/config/initializers/redis.rb +1 -0
  44. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  45. data/spec/dummy/config/locales/en.yml +33 -0
  46. data/spec/dummy/config/puma.rb +43 -0
  47. data/spec/dummy/config/routes.rb +3 -0
  48. data/spec/dummy/config/storage.yml +34 -0
  49. data/spec/dummy/db/schema.rb +18 -0
  50. data/spec/dummy/log/development.log +1693 -0
  51. data/spec/dummy/log/test.log +1258 -0
  52. data/spec/dummy/tmp/development_secret.txt +1 -0
  53. data/spec/dummy/tmp/pids/server.pid +1 -0
  54. data/spec/lib/hey_doctor/hey_doctor_spec.rb +42 -0
  55. data/spec/rails_helper.rb +27 -0
  56. data/spec/requests/health_check_spec.rb +28 -0
  57. data/spec/services/hey_doctor/check_application_health_service_spec.rb +46 -0
  58. data/spec/services/hey_doctor/check_database_health_service_spec.rb +91 -0
  59. data/spec/services/hey_doctor/check_redis_health_service_spec.rb +56 -0
  60. data/spec/spec_helper.rb +25 -0
  61. metadata +240 -0
@@ -0,0 +1,43 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
9
+ threads min_threads_count, max_threads_count
10
+
11
+ # Specifies the `worker_timeout` threshold that Puma will use to wait before
12
+ # terminating a worker in development environments.
13
+ #
14
+ worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
15
+
16
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
17
+ #
18
+ port ENV.fetch("PORT") { 3000 }
19
+
20
+ # Specifies the `environment` that Puma will run in.
21
+ #
22
+ environment ENV.fetch("RAILS_ENV") { "development" }
23
+
24
+ # Specifies the `pidfile` that Puma will use.
25
+ pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
26
+
27
+ # Specifies the number of `workers` to boot in clustered mode.
28
+ # Workers are forked web server processes. If using threads and workers together
29
+ # the concurrency of the application would be max `threads` * `workers`.
30
+ # Workers do not work on JRuby or Windows (both of which do not support
31
+ # processes).
32
+ #
33
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
34
+
35
+ # Use the `preload_app!` method when specifying a `workers` number.
36
+ # This directive tells Puma to first boot the application and load code
37
+ # before forking the application. This takes advantage of Copy On Write
38
+ # process behavior so workers use less memory.
39
+ #
40
+ # preload_app!
41
+
42
+ # Allow puma to be restarted by `rails restart` command.
43
+ plugin :tmp_restart
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ root to: 'home#index'
3
+ end
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -0,0 +1,18 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
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.
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 0) do
14
+
15
+ # These are extensions that must be enabled in order to support this database
16
+ enable_extension "plpgsql"
17
+
18
+ end
@@ -0,0 +1,1693 @@
1
+  (86.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2
+  (92.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
3
+  (7.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
4
+  (4.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)
5
+  (1.1ms) SELECT pg_try_advisory_lock(1721091371569202325)
6
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7
+ ActiveRecord::InternalMetadata Load (2.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
8
+ TRANSACTION (1.3ms) BEGIN
9
+ 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", "2021-01-20 18:58:52.063062"], ["updated_at", "2021-01-20 18:58:52.063062"]]
10
+ TRANSACTION (1.6ms) COMMIT
11
+  (1.4ms) SELECT pg_advisory_unlock(1721091371569202325)
12
+  (3.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
13
+  (1.1ms) select 1
14
+  (1.0ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
15
+  (117.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
16
+  (94.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
17
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
18
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
19
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
20
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
21
+  (6.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
22
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
23
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
24
+  (4.0ms) 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)
25
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
26
+ TRANSACTION (0.3ms) BEGIN
27
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-20 19:12:25.170333"], ["updated_at", "2021-01-20 19:12:25.170333"]]
28
+ TRANSACTION (0.7ms) COMMIT
29
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
30
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
31
+ TRANSACTION (0.4ms) BEGIN
32
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:12:25.185704"], ["updated_at", "2021-01-20 19:12:25.185704"]]
33
+ TRANSACTION (0.8ms) COMMIT
34
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
35
+  (5.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
36
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
37
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
38
+  (3.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)
39
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
40
+ TRANSACTION (0.2ms) BEGIN
41
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-20 19:12:25.241819"], ["updated_at", "2021-01-20 19:12:25.241819"]]
42
+ TRANSACTION (0.7ms) COMMIT
43
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
44
+ TRANSACTION (0.3ms) BEGIN
45
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-20 19:12:25.251375"], ["key", "environment"]]
46
+ TRANSACTION (0.8ms) COMMIT
47
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
48
+ TRANSACTION (0.3ms) BEGIN
49
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:12:25.262163"], ["updated_at", "2021-01-20 19:12:25.262163"]]
50
+ TRANSACTION (0.8ms) COMMIT
51
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
52
+  (0.5ms) select 1
53
+  (0.6ms) select 1
54
+  (84.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
55
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
56
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
57
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
58
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
59
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
60
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
61
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
62
+ TRANSACTION (0.3ms) BEGIN
63
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:30:31.169481"], ["updated_at", "2021-01-20 19:30:31.169481"]]
64
+ TRANSACTION (0.8ms) COMMIT
65
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
66
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
67
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
68
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
69
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
70
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
71
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
72
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
73
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
74
+  (1.0ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
75
+  (93.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
76
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
77
+  (5.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
78
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
79
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (0)
80
+  (4.0ms) 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)
81
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
82
+ TRANSACTION (0.4ms) BEGIN
83
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-20 19:30:55.932493"], ["updated_at", "2021-01-20 19:30:55.932493"]]
84
+ TRANSACTION (0.8ms) COMMIT
85
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
86
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
87
+ TRANSACTION (0.3ms) BEGIN
88
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:30:55.953097"], ["updated_at", "2021-01-20 19:30:55.953097"]]
89
+ TRANSACTION (0.8ms) COMMIT
90
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
91
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
92
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
93
+ TRANSACTION (0.2ms) BEGIN
94
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-01-20 19:30:55.994828"], ["key", "environment"]]
95
+ TRANSACTION (1.0ms) COMMIT
96
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
97
+ TRANSACTION (0.4ms) BEGIN
98
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-20 19:30:56.006441"], ["key", "environment"]]
99
+ TRANSACTION (0.7ms) COMMIT
100
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
101
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
102
+  (0.3ms) select 1
103
+  (0.3ms) select 1
104
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 19:43:37 +0000
105
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
106
+ Processing by HealthController#check as HTML
107
+  (0.7ms) select 1
108
+ ↳ lib/health_check.rb:36:in `connected?'
109
+ Completed 204 No Content in 63ms (ActiveRecord: 0.7ms | Allocations: 3629)
110
+
111
+
112
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 19:44:02 +0000
113
+ Processing by HealthController#check as HTML
114
+  (0.3ms) select 1
115
+ ↳ lib/health_check.rb:36:in `connected?'
116
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 631)
117
+
118
+
119
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-20 19:44:02 +0000
120
+
121
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
122
+
123
+ Started GET "/stalker" for 172.19.0.1 at 2021-01-20 19:45:09 +0000
124
+
125
+ ActionController::RoutingError (No route matches [GET] "/stalker"):
126
+
127
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 20:13:30 +0000
128
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
129
+ Processing by HealthController#check as HTML
130
+  (0.5ms) select 1
131
+ ↳ lib/health_check.rb:38:in `connected?'
132
+ Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 3706)
133
+
134
+
135
+  (92.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
136
+  (10.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
137
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
138
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
139
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
140
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
141
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
142
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
143
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
144
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
145
+ TRANSACTION (0.3ms) BEGIN
146
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-01-20 20:14:51.213863"], ["key", "environment"]]
147
+ TRANSACTION (3.3ms) COMMIT
148
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
149
+ TRANSACTION (0.5ms) BEGIN
150
+ ActiveRecord::InternalMetadata Update (0.8ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-20 20:14:51.230637"], ["key", "environment"]]
151
+ TRANSACTION (1.3ms) COMMIT
152
+ ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
153
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
154
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
155
+  (87.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
156
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
157
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
158
+  (93.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
159
+  (93.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
160
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
161
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
162
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
163
+  (5.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
164
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
165
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
166
+  (4.3ms) 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)
167
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
168
+ TRANSACTION (0.3ms) BEGIN
169
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-20 20:17:34.714897"], ["updated_at", "2021-01-20 20:17:34.714897"]]
170
+ TRANSACTION (0.8ms) COMMIT
171
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
172
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
173
+ TRANSACTION (0.2ms) BEGIN
174
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 20:17:34.727712"], ["updated_at", "2021-01-20 20:17:34.727712"]]
175
+ TRANSACTION (0.8ms) COMMIT
176
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
177
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
178
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
179
+ TRANSACTION (0.2ms) BEGIN
180
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-01-20 20:17:34.758874"], ["key", "environment"]]
181
+ TRANSACTION (1.0ms) COMMIT
182
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
183
+ TRANSACTION (0.3ms) BEGIN
184
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-20 20:17:34.767949"], ["key", "environment"]]
185
+ TRANSACTION (0.7ms) COMMIT
186
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
187
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
188
+ Started GET "/stalker" for 172.19.0.1 at 2021-01-20 20:29:55 +0000
189
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
190
+
191
+ ActionController::RoutingError (No route matches [GET] "/stalker"):
192
+
193
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 20:40:04 +0000
194
+ Processing by HealthController#check as HTML
195
+ Completed 500 Internal Server Error in 11ms (Allocations: 1766)
196
+
197
+
198
+
199
+ NameError (uninitialized constant HealthController::HealthCheck):
200
+
201
+ app/controllers/health_controller.rb:3:in `check'
202
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 20:42:30 +0000
203
+
204
+ ActionController::RoutingError (No route matches [GET] "/_ah/health"):
205
+
206
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 20:42:47 +0000
207
+ Processing by Stalker::HealthController#check as HTML
208
+ Completed 500 Internal Server Error in 13ms (Allocations: 248)
209
+
210
+
211
+
212
+ SyntaxError (/stalker/app/models/stalker/database_health.rb:24: syntax error, unexpected end-of-input, expecting `end'):
213
+
214
+ /stalker/app/models/stalker/database_health.rb:24: syntax error, unexpected end-of-input, expecting `end'
215
+ /stalker/app/models/stalker/database_health.rb:24: syntax error, unexpected end-of-input, expecting `end'
216
+ zeitwerk (2.4.2) lib/zeitwerk/kernel.rb:26:in `require'
217
+ zeitwerk (2.4.2) lib/zeitwerk/kernel.rb:26:in `require'
218
+ /stalker/app/models/stalker/health_check.rb:7:in `health'
219
+ /stalker/app/controllers/stalker/health_controller.rb:3:in `check'
220
+ actionpack (6.1.1) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
221
+ actionpack (6.1.1) lib/abstract_controller/base.rb:228:in `process_action'
222
+ actionpack (6.1.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
223
+ actionpack (6.1.1) lib/abstract_controller/callbacks.rb:42:in `block in process_action'
224
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
225
+ actionpack (6.1.1) lib/abstract_controller/callbacks.rb:41:in `process_action'
226
+ actionpack (6.1.1) lib/action_controller/metal/rescue.rb:22:in `process_action'
227
+ actionpack (6.1.1) lib/action_controller/metal/instrumentation.rb:34:in `block in process_action'
228
+ activesupport (6.1.1) lib/active_support/notifications.rb:203:in `block in instrument'
229
+ activesupport (6.1.1) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
230
+ activesupport (6.1.1) lib/active_support/notifications.rb:203:in `instrument'
231
+ actionpack (6.1.1) lib/action_controller/metal/instrumentation.rb:33:in `process_action'
232
+ actionpack (6.1.1) lib/action_controller/metal/params_wrapper.rb:249:in `process_action'
233
+ activerecord (6.1.1) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
234
+ actionpack (6.1.1) lib/abstract_controller/base.rb:165:in `process'
235
+ actionpack (6.1.1) lib/action_controller/metal.rb:190:in `dispatch'
236
+ actionpack (6.1.1) lib/action_controller/metal.rb:254:in `dispatch'
237
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
238
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:33:in `serve'
239
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:50:in `block in serve'
240
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `each'
241
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `serve'
242
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:842:in `call'
243
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
244
+ railties (6.1.1) lib/rails/railtie.rb:207:in `public_send'
245
+ railties (6.1.1) lib/rails/railtie.rb:207:in `method_missing'
246
+ actionpack (6.1.1) lib/action_dispatch/routing/mapper.rb:20:in `block in <class:Constraints>'
247
+ actionpack (6.1.1) lib/action_dispatch/routing/mapper.rb:49:in `serve'
248
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:50:in `block in serve'
249
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `each'
250
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `serve'
251
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:842:in `call'
252
+ rack (2.2.3) lib/rack/etag.rb:27:in `call'
253
+ rack (2.2.3) lib/rack/conditional_get.rb:27:in `call'
254
+ rack (2.2.3) lib/rack/head.rb:12:in `call'
255
+ activerecord (6.1.1) lib/active_record/migration.rb:601:in `call'
256
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
257
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
258
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
259
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
260
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
261
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
262
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
263
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
264
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
265
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
266
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
267
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
268
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
269
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
270
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
271
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
272
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
273
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
274
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
275
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
276
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
277
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
278
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
279
+ /usr/local/lib/ruby/2.7.0/webrick/httpserver.rb:140:in `service'
280
+ /usr/local/lib/ruby/2.7.0/webrick/httpserver.rb:96:in `run'
281
+ /usr/local/lib/ruby/2.7.0/webrick/server.rb:307:in `block in start_thread'
282
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 20:43:26 +0000
283
+ Processing by Stalker::HealthController#check as HTML
284
+  (0.2ms) select 1
285
+ Completed 200 OK in 28ms (Views: 0.2ms | ActiveRecord: 5.7ms | Allocations: 3114)
286
+
287
+
288
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 20:50:54 +0000
289
+ Processing by Stalker::HealthController#check as HTML
290
+  (0.2ms) select 1
291
+ Completed 200 OK in 14ms (Views: 0.1ms | ActiveRecord: 4.9ms | Allocations: 2654)
292
+
293
+
294
+ Started GET "/stalker" for 172.19.0.1 at 2021-01-20 20:51:07 +0000
295
+
296
+ ActionController::RoutingError (No route matches [GET] "/stalker"):
297
+
298
+  (57.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
299
+  (63.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
300
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
301
+  (4.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
302
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
303
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
304
+  (2.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)
305
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
306
+ TRANSACTION (0.2ms) BEGIN
307
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:36:53.585165"], ["updated_at", "2021-01-21 14:36:53.585165"]]
308
+ TRANSACTION (0.5ms) COMMIT
309
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
310
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
311
+ TRANSACTION (0.4ms) BEGIN
312
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:36:53.595873"], ["updated_at", "2021-01-21 14:36:53.595873"]]
313
+ TRANSACTION (0.5ms) COMMIT
314
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
315
+  (4.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
316
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
317
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
318
+  (3.1ms) 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)
319
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
320
+ TRANSACTION (0.2ms) BEGIN
321
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:36:53.637356"], ["updated_at", "2021-01-21 14:36:53.637356"]]
322
+ TRANSACTION (0.5ms) COMMIT
323
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
324
+ TRANSACTION (0.2ms) BEGIN
325
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 14:36:53.644931"], ["key", "environment"]]
326
+ TRANSACTION (0.6ms) COMMIT
327
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
328
+ TRANSACTION (0.2ms) BEGIN
329
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:36:53.653200"], ["updated_at", "2021-01-21 14:36:53.653200"]]
330
+ TRANSACTION (0.6ms) COMMIT
331
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
332
+  (66.2ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
333
+  (56.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
334
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
335
+  (5.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
336
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
337
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES (0)
338
+  (5.1ms) 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)
339
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
340
+ TRANSACTION (0.4ms) BEGIN
341
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-21 14:39:55.839635"], ["updated_at", "2021-01-21 14:39:55.839635"]]
342
+ TRANSACTION (1.3ms) COMMIT
343
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
344
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
345
+ TRANSACTION (0.4ms) BEGIN
346
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:39:55.856735"], ["updated_at", "2021-01-21 14:39:55.856735"]]
347
+ TRANSACTION (0.9ms) COMMIT
348
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
349
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
350
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
351
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
352
+  (3.2ms) 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)
353
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
354
+ TRANSACTION (0.3ms) BEGIN
355
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:39:55.908179"], ["updated_at", "2021-01-21 14:39:55.908179"]]
356
+ TRANSACTION (0.5ms) COMMIT
357
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
358
+ TRANSACTION (0.2ms) BEGIN
359
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 14:39:55.916012"], ["key", "environment"]]
360
+ TRANSACTION (0.6ms) COMMIT
361
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
362
+ TRANSACTION (0.2ms) BEGIN
363
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:39:55.923680"], ["updated_at", "2021-01-21 14:39:55.923680"]]
364
+ TRANSACTION (0.6ms) COMMIT
365
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
366
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 14:50:18 +0000
367
+
368
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
369
+ ):
370
+
371
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
372
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
373
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
374
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
375
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
376
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
377
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
378
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
379
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
380
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
381
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
382
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
383
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
384
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
385
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
386
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
387
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
388
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
389
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
390
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
391
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
392
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
393
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
394
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
395
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
396
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
397
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
398
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
399
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
400
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
401
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
402
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
403
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
404
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
405
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
406
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
407
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
408
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
409
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
410
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
411
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
412
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
413
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
414
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
415
+  (65.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
416
+  (60.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
417
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
418
+  (5.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
419
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
420
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
421
+  (3.0ms) 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)
422
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
423
+ TRANSACTION (0.2ms) BEGIN
424
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:50:36.419806"], ["updated_at", "2021-01-21 14:50:36.419806"]]
425
+ TRANSACTION (0.6ms) COMMIT
426
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
427
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
428
+ TRANSACTION (0.2ms) BEGIN
429
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:50:36.430681"], ["updated_at", "2021-01-21 14:50:36.430681"]]
430
+ TRANSACTION (0.6ms) COMMIT
431
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
432
+  (4.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
433
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
434
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (0)
435
+  (3.2ms) 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)
436
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
437
+ TRANSACTION (0.2ms) BEGIN
438
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:50:36.480264"], ["updated_at", "2021-01-21 14:50:36.480264"]]
439
+ TRANSACTION (0.5ms) COMMIT
440
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
441
+ TRANSACTION (0.2ms) BEGIN
442
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 14:50:36.487876"], ["key", "environment"]]
443
+ TRANSACTION (0.5ms) COMMIT
444
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
445
+ TRANSACTION (0.2ms) BEGIN
446
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:50:36.495762"], ["updated_at", "2021-01-21 14:50:36.495762"]]
447
+ TRANSACTION (0.5ms) COMMIT
448
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
449
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 14:50:39 +0000
450
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
451
+ Processing by Stalker::HealthController#check as */*
452
+  (0.4ms) select 1
453
+ Completed 200 OK in 47ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 5369)
454
+
455
+
456
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 14:50:54 +0000
457
+ Processing by Stalker::HealthController#check as HTML
458
+  (0.2ms) select 1
459
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 743)
460
+
461
+
462
+ Started GET "/halth" for 172.19.0.1 at 2021-01-21 15:00:26 +0000
463
+
464
+ ActionController::RoutingError (No route matches [GET] "/halth"):
465
+
466
+ Started GET "/health" for 172.19.0.1 at 2021-01-21 15:00:32 +0000
467
+
468
+ ActionController::RoutingError (No route matches [GET] "/health"):
469
+
470
+ Started GET "/health" for 172.19.0.1 at 2021-01-21 15:01:24 +0000
471
+
472
+ ActionController::RoutingError (No route matches [GET] "/health"):
473
+
474
+  (59.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
475
+  (89.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
476
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
477
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
478
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
479
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
480
+  (2.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)
481
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
482
+ TRANSACTION (0.2ms) BEGIN
483
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 15:09:49.360559"], ["updated_at", "2021-01-21 15:09:49.360559"]]
484
+ TRANSACTION (0.5ms) COMMIT
485
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
486
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
487
+ TRANSACTION (0.2ms) BEGIN
488
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 15:09:49.371915"], ["updated_at", "2021-01-21 15:09:49.371915"]]
489
+ TRANSACTION (0.5ms) COMMIT
490
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
491
+  (4.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
492
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
493
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
494
+  (2.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)
495
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
496
+ TRANSACTION (0.2ms) BEGIN
497
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 15:09:49.413451"], ["updated_at", "2021-01-21 15:09:49.413451"]]
498
+ TRANSACTION (0.5ms) COMMIT
499
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
500
+ TRANSACTION (0.2ms) BEGIN
501
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 15:09:49.420876"], ["key", "environment"]]
502
+ TRANSACTION (0.6ms) COMMIT
503
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
504
+ TRANSACTION (0.2ms) BEGIN
505
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 15:09:49.428968"], ["updated_at", "2021-01-21 15:09:49.428968"]]
506
+ TRANSACTION (0.5ms) COMMIT
507
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
508
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 15:10:58 +0000
509
+
510
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
511
+ ):
512
+
513
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
514
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
515
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
516
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
517
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
518
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
519
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
520
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
521
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
522
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
523
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
524
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
525
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
526
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
527
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
528
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
529
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
530
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
531
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
532
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
533
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
534
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
535
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
536
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
537
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
538
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
539
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
540
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
541
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
542
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
543
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
544
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
545
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
546
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
547
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
548
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
549
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
550
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
551
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
552
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
553
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
554
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
555
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
556
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
557
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
558
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
559
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
560
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-21 15:10:58 +0000
561
+
562
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
563
+ ):
564
+
565
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
566
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
567
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
568
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
569
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
570
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
571
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
572
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
573
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
574
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
575
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
576
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
577
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
578
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
579
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
580
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
581
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
582
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
583
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
584
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
585
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
586
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
587
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
588
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
589
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
590
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
591
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
592
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
593
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
594
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
595
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
596
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
597
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
598
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
599
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
600
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
601
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
602
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
603
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
604
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
605
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
606
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
607
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
608
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
609
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
610
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
611
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
612
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 15:26:12 +0000
613
+
614
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
615
+ ):
616
+
617
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
618
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
619
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
620
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
621
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
622
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
623
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
624
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
625
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
626
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
627
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
628
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
629
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
630
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
631
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
632
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
633
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
634
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
635
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
636
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
637
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
638
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
639
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
640
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
641
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
642
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
643
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
644
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
645
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
646
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
647
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
648
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
649
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
650
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
651
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
652
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
653
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
654
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
655
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
656
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
657
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
658
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
659
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
660
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
661
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
662
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
663
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
664
+  (103.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
665
+  (80.4ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
666
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 17:22:54 +0000
667
+ Processing by Stalker::HealthController#check as HTML
668
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 154)
669
+
670
+
671
+
672
+ NoMethodError (undefined method `health' for Stalker:Module):
673
+
674
+ /stalker/app/controllers/stalker/health_controller.rb:5:in `check'
675
+ actionpack (6.1.1) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
676
+ actionpack (6.1.1) lib/abstract_controller/base.rb:228:in `process_action'
677
+ actionpack (6.1.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
678
+ actionpack (6.1.1) lib/abstract_controller/callbacks.rb:42:in `block in process_action'
679
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
680
+ actionpack (6.1.1) lib/abstract_controller/callbacks.rb:41:in `process_action'
681
+ actionpack (6.1.1) lib/action_controller/metal/rescue.rb:22:in `process_action'
682
+ actionpack (6.1.1) lib/action_controller/metal/instrumentation.rb:34:in `block in process_action'
683
+ activesupport (6.1.1) lib/active_support/notifications.rb:203:in `block in instrument'
684
+ activesupport (6.1.1) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
685
+ activesupport (6.1.1) lib/active_support/notifications.rb:203:in `instrument'
686
+ actionpack (6.1.1) lib/action_controller/metal/instrumentation.rb:33:in `process_action'
687
+ actionpack (6.1.1) lib/action_controller/metal/params_wrapper.rb:249:in `process_action'
688
+ activerecord (6.1.1) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
689
+ actionpack (6.1.1) lib/abstract_controller/base.rb:165:in `process'
690
+ actionpack (6.1.1) lib/action_controller/metal.rb:190:in `dispatch'
691
+ actionpack (6.1.1) lib/action_controller/metal.rb:254:in `dispatch'
692
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
693
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:33:in `serve'
694
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:50:in `block in serve'
695
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `each'
696
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `serve'
697
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:842:in `call'
698
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
699
+ railties (6.1.1) lib/rails/railtie.rb:207:in `public_send'
700
+ railties (6.1.1) lib/rails/railtie.rb:207:in `method_missing'
701
+ actionpack (6.1.1) lib/action_dispatch/routing/mapper.rb:20:in `block in <class:Constraints>'
702
+ actionpack (6.1.1) lib/action_dispatch/routing/mapper.rb:49:in `serve'
703
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:50:in `block in serve'
704
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `each'
705
+ actionpack (6.1.1) lib/action_dispatch/journey/router.rb:32:in `serve'
706
+ actionpack (6.1.1) lib/action_dispatch/routing/route_set.rb:842:in `call'
707
+ rack (2.2.3) lib/rack/etag.rb:27:in `call'
708
+ rack (2.2.3) lib/rack/conditional_get.rb:27:in `call'
709
+ rack (2.2.3) lib/rack/head.rb:12:in `call'
710
+ activerecord (6.1.1) lib/active_record/migration.rb:601:in `call'
711
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
712
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
713
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
714
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
715
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
716
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
717
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
718
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
719
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
720
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
721
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
722
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
723
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
724
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
725
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
726
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
727
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
728
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
729
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
730
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
731
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
732
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
733
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
734
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
735
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
736
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
737
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
738
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
739
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
740
+ Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 17:24:23 +0000
741
+
742
+ ActionController::RoutingError (uninitialized constant Stalker::HealthController):
743
+
744
+  (102.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
745
+  (95.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
746
+  (0.6ms) select 1
747
+  (0.7ms) select 1
748
+  (0.2ms) select 1
749
+  (0.4ms) select 1
750
+  (0.3ms) select 1
751
+  (0.5ms) select 1
752
+  (75.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
753
+  (94.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
754
+  (0.3ms) select 1
755
+  (0.4ms) select 1
756
+  (0.6ms) select 1
757
+  (0.4ms) select 1
758
+  (0.9ms) select 1
759
+  (0.6ms) select 1
760
+  (90.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
761
+  (79.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
762
+  (0.3ms) select 1
763
+  (0.4ms) select 1
764
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 17:52:35 +0000
765
+
766
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
767
+ ):
768
+
769
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
770
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
771
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
772
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
773
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
774
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
775
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
776
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
777
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
778
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
779
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
780
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
781
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
782
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
783
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
784
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
785
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
786
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
787
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
788
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
789
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
790
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
791
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
792
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
793
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
794
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
795
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
796
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
797
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
798
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
799
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
800
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
801
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
802
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
803
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
804
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
805
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
806
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
807
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
808
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
809
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
810
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
811
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
812
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
813
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
814
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
815
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
816
+  (81.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
817
+  (97.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
818
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
819
+  (4.5ms) 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)
820
+  (0.3ms) SELECT pg_try_advisory_lock(1721091371569202325)
821
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
822
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
823
+ TRANSACTION (0.2ms) BEGIN
824
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 17:53:34.017403"], ["updated_at", "2021-01-21 17:53:34.017403"]]
825
+ TRANSACTION (0.9ms) COMMIT
826
+  (0.4ms) SELECT pg_advisory_unlock(1721091371569202325)
827
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
828
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 17:53:52 +0000
829
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
830
+ Processing by Rails::WelcomeController#index as */*
831
+ Rendering /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb
832
+ Rendered /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 13.6ms | Allocations: 465)
833
+ Completed 200 OK in 109ms (Views: 43.8ms | ActiveRecord: 0.0ms | Allocations: 3979)
834
+
835
+
836
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 17:54:17 +0000
837
+ Processing by Rails::WelcomeController#index as */*
838
+ Rendering /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb
839
+ Rendered /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 4.6ms | Allocations: 195)
840
+ Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.0ms | Allocations: 845)
841
+
842
+
843
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:13:03 +0000
844
+
845
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
846
+ ):
847
+
848
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
849
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
850
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
851
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
852
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
853
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
854
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
855
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
856
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
857
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
858
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
859
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
860
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
861
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
862
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
863
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
864
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
865
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
866
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
867
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
868
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
869
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
870
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
871
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
872
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
873
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
874
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
875
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
876
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
877
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
878
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
879
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
880
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
881
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
882
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
883
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
884
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
885
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
886
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
887
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
888
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
889
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
890
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
891
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
892
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
893
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
894
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
895
+ Started GET "/" for 172.19.0.1 at 2021-01-21 18:13:18 +0000
896
+
897
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
898
+ ):
899
+
900
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
901
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
902
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
903
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
904
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
905
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
906
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
907
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
908
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
909
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
910
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
911
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
912
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
913
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
914
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
915
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
916
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
917
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
918
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
919
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
920
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
921
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
922
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
923
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
924
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
925
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
926
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
927
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
928
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
929
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
930
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
931
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
932
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
933
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
934
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
935
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
936
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
937
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
938
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
939
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
940
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
941
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
942
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
943
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
944
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
945
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
946
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
947
+  (108.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
948
+  (108.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
949
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
950
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
951
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
952
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
953
+  (4.5ms) 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)
954
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
955
+ TRANSACTION (0.3ms) BEGIN
956
+ ActiveRecord::InternalMetadata Create (1.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:17:01.139710"], ["updated_at", "2021-01-21 18:17:01.139710"]]
957
+ TRANSACTION (0.8ms) COMMIT
958
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
959
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
960
+ TRANSACTION (0.3ms) BEGIN
961
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:17:01.155698"], ["updated_at", "2021-01-21 18:17:01.155698"]]
962
+ TRANSACTION (1.5ms) COMMIT
963
+ SQL (0.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
964
+  (13.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
965
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
966
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES (0)
967
+  (6.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)
968
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
969
+ TRANSACTION (0.3ms) BEGIN
970
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-21 18:17:01.238496"], ["updated_at", "2021-01-21 18:17:01.238496"]]
971
+ TRANSACTION (0.8ms) COMMIT
972
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
973
+ TRANSACTION (0.3ms) BEGIN
974
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 18:17:01.249076"], ["key", "environment"]]
975
+ TRANSACTION (0.7ms) COMMIT
976
+ ActiveRecord::InternalMetadata Load (1.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
977
+ TRANSACTION (0.3ms) BEGIN
978
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:17:01.261323"], ["updated_at", "2021-01-21 18:17:01.261323"]]
979
+ TRANSACTION (0.8ms) COMMIT
980
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
981
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:18:02 +0000
982
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
983
+ Processing by Rails::WelcomeController#index as */*
984
+ Rendering /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb
985
+ Rendered /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 6.7ms | Allocations: 201)
986
+ Completed 200 OK in 59ms (Views: 10.3ms | ActiveRecord: 0.0ms | Allocations: 2307)
987
+
988
+
989
+  (0.8ms) select 1
990
+  (1.2ms) select 1
991
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
992
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:19:11 +0000
993
+ Processing by Rails::WelcomeController#index as */*
994
+ Rendering /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb
995
+ Rendered /usr/local/bundle/ruby/2.5.0/gems/railties-6.1.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 6.3ms | Allocations: 195)
996
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms | Allocations: 845)
997
+
998
+
999
+  (0.6ms) select 1
1000
+  (0.7ms) select 1
1001
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1002
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:21:18 +0000
1003
+ Processing by HomeController#index as */*
1004
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 166)
1005
+
1006
+
1007
+  (0.6ms) select 1
1008
+  (0.8ms) select 1
1009
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1010
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:21:19 +0000
1011
+ Processing by HomeController#index as */*
1012
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 108)
1013
+
1014
+
1015
+  (0.8ms) select 1
1016
+  (0.8ms) select 1
1017
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1018
+ Started GET "/" for 172.19.0.1 at 2021-01-21 18:21:23 +0000
1019
+ Processing by HomeController#index as HTML
1020
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 103)
1021
+
1022
+
1023
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:23:11 +0000
1024
+
1025
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
1026
+ ):
1027
+
1028
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
1029
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
1030
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
1031
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
1032
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
1033
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
1034
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
1035
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
1036
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
1037
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
1038
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
1039
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
1040
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
1041
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
1042
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
1043
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
1044
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
1045
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
1046
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
1047
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
1048
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
1049
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1050
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
1051
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
1052
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1053
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
1054
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
1055
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
1056
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
1057
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
1058
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
1059
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1060
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
1061
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
1062
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1063
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1064
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
1065
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
1066
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
1067
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
1068
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
1069
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
1070
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
1071
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
1072
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
1073
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
1074
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
1075
+  (99.3ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1076
+  (83.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1077
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1078
+  (5.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1079
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1080
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1081
+  (5.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)
1082
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1083
+ TRANSACTION (0.8ms) BEGIN
1084
+ ActiveRecord::InternalMetadata Create (1.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:23:47.172691"], ["updated_at", "2021-01-21 18:23:47.172691"]]
1085
+ TRANSACTION (1.5ms) COMMIT
1086
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1087
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1088
+ TRANSACTION (0.8ms) BEGIN
1089
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:23:47.199443"], ["updated_at", "2021-01-21 18:23:47.199443"]]
1090
+ TRANSACTION (1.3ms) COMMIT
1091
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1092
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1093
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1094
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1095
+  (6.5ms) 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)
1096
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1097
+ TRANSACTION (0.4ms) BEGIN
1098
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-21 18:23:47.272492"], ["updated_at", "2021-01-21 18:23:47.272492"]]
1099
+ TRANSACTION (0.7ms) COMMIT
1100
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1101
+ TRANSACTION (0.3ms) BEGIN
1102
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 18:23:47.283053"], ["key", "environment"]]
1103
+ TRANSACTION (0.7ms) COMMIT
1104
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1105
+ TRANSACTION (0.3ms) BEGIN
1106
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:23:47.313148"], ["updated_at", "2021-01-21 18:23:47.313148"]]
1107
+ TRANSACTION (0.9ms) COMMIT
1108
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1109
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:23:50 +0000
1110
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1111
+ Processing by HomeController#index as */*
1112
+ Completed 200 OK in 61ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 4356)
1113
+
1114
+
1115
+  (0.5ms) select 1
1116
+  (0.5ms) select 1
1117
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1118
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:24:33 +0000
1119
+ Processing by HomeController#index as */*
1120
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 108)
1121
+
1122
+
1123
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:26:11 +0000
1124
+ Processing by HomeController#index as */*
1125
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 126)
1126
+
1127
+
1128
+  (101.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1129
+  (106.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1130
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1131
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1132
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1133
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1134
+  (5.3ms) 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)
1135
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1136
+ TRANSACTION (0.4ms) BEGIN
1137
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:30:03.471338"], ["updated_at", "2021-01-21 18:30:03.471338"]]
1138
+ TRANSACTION (0.9ms) COMMIT
1139
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1140
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1141
+ TRANSACTION (0.2ms) BEGIN
1142
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:30:03.486704"], ["updated_at", "2021-01-21 18:30:03.486704"]]
1143
+ TRANSACTION (0.6ms) COMMIT
1144
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1145
+  (7.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1146
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1147
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1148
+  (5.5ms) 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)
1149
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1150
+ TRANSACTION (0.3ms) BEGIN
1151
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:30:03.548884"], ["updated_at", "2021-01-21 18:30:03.548884"]]
1152
+ TRANSACTION (1.1ms) COMMIT
1153
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1154
+ TRANSACTION (0.4ms) BEGIN
1155
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 18:30:03.562160"], ["key", "environment"]]
1156
+ TRANSACTION (0.9ms) COMMIT
1157
+ ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1158
+ TRANSACTION (0.3ms) BEGIN
1159
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:30:03.574233"], ["updated_at", "2021-01-21 18:30:03.574233"]]
1160
+ TRANSACTION (1.0ms) COMMIT
1161
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1162
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:30:36 +0000
1163
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1164
+ Processing by HomeController#index as */*
1165
+ Completed 200 OK in 70ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 4359)
1166
+
1167
+
1168
+  (0.4ms) select 1
1169
+  (0.9ms) select 1
1170
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1171
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:30:43 +0000
1172
+ Processing by HomeController#index as */*
1173
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 108)
1174
+
1175
+
1176
+  (2.0ms) select 1
1177
+  (0.5ms) select 1
1178
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1179
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:30:54 +0000
1180
+ Processing by HomeController#index as */*
1181
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 126)
1182
+
1183
+
1184
+  (0.6ms) select 1
1185
+  (0.5ms) select 1
1186
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1187
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:38:20 +0000
1188
+
1189
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
1190
+ ):
1191
+
1192
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
1193
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
1194
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
1195
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
1196
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
1197
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
1198
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
1199
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
1200
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
1201
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
1202
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
1203
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
1204
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
1205
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
1206
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
1207
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
1208
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
1209
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
1210
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
1211
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
1212
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
1213
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1214
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
1215
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
1216
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1217
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
1218
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
1219
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
1220
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
1221
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
1222
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
1223
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1224
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
1225
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
1226
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1227
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1228
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
1229
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
1230
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
1231
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
1232
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
1233
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
1234
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
1235
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
1236
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
1237
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
1238
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
1239
+  (99.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1240
+  (85.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1241
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1242
+  (7.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1243
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1244
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1245
+  (4.5ms) 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)
1246
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1247
+ TRANSACTION (0.3ms) BEGIN
1248
+ ActiveRecord::InternalMetadata Create (1.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:38:42.320052"], ["updated_at", "2021-01-21 18:38:42.320052"]]
1249
+ TRANSACTION (0.7ms) COMMIT
1250
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1251
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1252
+ TRANSACTION (0.4ms) BEGIN
1253
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:38:42.335685"], ["updated_at", "2021-01-21 18:38:42.335685"]]
1254
+ TRANSACTION (0.8ms) COMMIT
1255
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1256
+  (6.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1257
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1258
+  (9.4ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1259
+  (6.1ms) 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)
1260
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1261
+ TRANSACTION (0.2ms) BEGIN
1262
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:38:42.405186"], ["updated_at", "2021-01-21 18:38:42.405186"]]
1263
+ TRANSACTION (0.8ms) COMMIT
1264
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1265
+ TRANSACTION (0.2ms) BEGIN
1266
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 18:38:42.415374"], ["key", "environment"]]
1267
+ TRANSACTION (0.7ms) COMMIT
1268
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1269
+ TRANSACTION (0.2ms) BEGIN
1270
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:38:42.426015"], ["updated_at", "2021-01-21 18:38:42.426015"]]
1271
+ TRANSACTION (0.9ms) COMMIT
1272
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1273
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:38:46 +0000
1274
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1275
+ Processing by HomeController#index as */*
1276
+ Completed 200 OK in 52ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 4358)
1277
+
1278
+
1279
+  (1.8ms) select 1
1280
+  (0.6ms) select 1
1281
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1282
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:43:38 +0000
1283
+
1284
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
1285
+ ):
1286
+
1287
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
1288
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
1289
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
1290
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
1291
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
1292
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
1293
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
1294
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
1295
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
1296
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
1297
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
1298
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
1299
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
1300
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
1301
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
1302
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
1303
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
1304
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
1305
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
1306
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
1307
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
1308
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1309
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
1310
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
1311
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1312
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
1313
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
1314
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
1315
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
1316
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
1317
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
1318
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1319
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
1320
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
1321
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1322
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1323
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
1324
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
1325
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
1326
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
1327
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
1328
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
1329
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
1330
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
1331
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
1332
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
1333
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
1334
+  (102.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1335
+  (126.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1336
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1337
+  (6.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1338
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1339
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1340
+  (4.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)
1341
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1342
+ TRANSACTION (0.4ms) BEGIN
1343
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:56:16.606561"], ["updated_at", "2021-01-21 18:56:16.606561"]]
1344
+ TRANSACTION (0.9ms) COMMIT
1345
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1346
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1347
+ TRANSACTION (0.3ms) BEGIN
1348
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:56:16.621968"], ["updated_at", "2021-01-21 18:56:16.621968"]]
1349
+ TRANSACTION (1.0ms) COMMIT
1350
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1351
+  (6.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1352
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1353
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1354
+  (4.5ms) 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)
1355
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1356
+ TRANSACTION (0.4ms) BEGIN
1357
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-21 18:56:16.681619"], ["updated_at", "2021-01-21 18:56:16.681619"]]
1358
+ TRANSACTION (0.8ms) COMMIT
1359
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1360
+ TRANSACTION (0.3ms) BEGIN
1361
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 18:56:16.694836"], ["key", "environment"]]
1362
+ TRANSACTION (0.8ms) COMMIT
1363
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1364
+ TRANSACTION (0.3ms) BEGIN
1365
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:56:16.705520"], ["updated_at", "2021-01-21 18:56:16.705520"]]
1366
+ TRANSACTION (0.9ms) COMMIT
1367
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1368
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1369
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1370
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:29:05 +0000
1371
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1372
+ Processing by HomeController#index as */*
1373
+ Completed 200 OK in 40ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 4357)
1374
+
1375
+
1376
+  (0.7ms) select 1
1377
+  (0.9ms) select 1
1378
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1379
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:31:36 +0000
1380
+
1381
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
1382
+ ):
1383
+
1384
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
1385
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
1386
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
1387
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
1388
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
1389
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
1390
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
1391
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
1392
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
1393
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
1394
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
1395
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
1396
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
1397
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
1398
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
1399
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
1400
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
1401
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
1402
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
1403
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
1404
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
1405
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1406
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
1407
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
1408
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1409
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
1410
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
1411
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
1412
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
1413
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
1414
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
1415
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1416
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
1417
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
1418
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1419
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1420
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
1421
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
1422
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
1423
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
1424
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
1425
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
1426
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
1427
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
1428
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
1429
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
1430
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
1431
+  (93.0ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1432
+  (80.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1433
+ SQL (1.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1434
+  (6.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1435
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1436
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1437
+  (4.5ms) 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)
1438
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1439
+ TRANSACTION (0.3ms) BEGIN
1440
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-21 20:31:52.766135"], ["updated_at", "2021-01-21 20:31:52.766135"]]
1441
+ TRANSACTION (0.8ms) COMMIT
1442
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1443
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1444
+ TRANSACTION (0.3ms) BEGIN
1445
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:31:52.779999"], ["updated_at", "2021-01-21 20:31:52.779999"]]
1446
+ TRANSACTION (0.8ms) COMMIT
1447
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1448
+  (5.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1449
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1450
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1451
+  (4.2ms) 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)
1452
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1453
+ TRANSACTION (0.2ms) BEGIN
1454
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 20:31:52.831437"], ["updated_at", "2021-01-21 20:31:52.831437"]]
1455
+ TRANSACTION (0.8ms) COMMIT
1456
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1457
+ TRANSACTION (0.2ms) BEGIN
1458
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 20:31:52.842372"], ["key", "environment"]]
1459
+ TRANSACTION (0.7ms) COMMIT
1460
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1461
+ TRANSACTION (0.3ms) BEGIN
1462
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:31:52.851728"], ["updated_at", "2021-01-21 20:31:52.851728"]]
1463
+ TRANSACTION (0.8ms) COMMIT
1464
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1465
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:31:55 +0000
1466
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1467
+ Processing by HomeController#index as */*
1468
+ Completed 200 OK in 40ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 4355)
1469
+
1470
+
1471
+  (0.3ms) select 1
1472
+  (0.7ms) select 1
1473
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1474
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:35:14 +0000
1475
+ Processing by HomeController#index as */*
1476
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 126)
1477
+
1478
+
1479
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:54:23 +0000
1480
+
1481
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
1482
+ ):
1483
+
1484
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
1485
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
1486
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
1487
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
1488
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
1489
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
1490
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
1491
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
1492
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
1493
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
1494
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
1495
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
1496
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
1497
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
1498
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
1499
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
1500
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
1501
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
1502
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
1503
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
1504
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
1505
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1506
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
1507
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
1508
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1509
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
1510
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
1511
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
1512
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
1513
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
1514
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
1515
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1516
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
1517
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
1518
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1519
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1520
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
1521
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
1522
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
1523
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
1524
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
1525
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
1526
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
1527
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
1528
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
1529
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
1530
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
1531
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:54:38 +0000
1532
+
1533
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
1534
+ ):
1535
+
1536
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
1537
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
1538
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
1539
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
1540
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
1541
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
1542
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
1543
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
1544
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
1545
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
1546
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
1547
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
1548
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
1549
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
1550
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
1551
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
1552
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
1553
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
1554
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
1555
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
1556
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
1557
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1558
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
1559
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
1560
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1561
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
1562
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
1563
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
1564
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
1565
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
1566
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
1567
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1568
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
1569
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
1570
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1571
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
1572
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
1573
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
1574
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
1575
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
1576
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
1577
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
1578
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
1579
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
1580
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
1581
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
1582
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
1583
+  (94.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1584
+  (104.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1585
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1586
+  (5.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1587
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1588
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1589
+  (4.5ms) 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)
1590
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1591
+ TRANSACTION (0.4ms) BEGIN
1592
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-21 20:54:39.788687"], ["updated_at", "2021-01-21 20:54:39.788687"]]
1593
+ TRANSACTION (0.8ms) COMMIT
1594
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1595
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1596
+ TRANSACTION (0.3ms) BEGIN
1597
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:54:39.803356"], ["updated_at", "2021-01-21 20:54:39.803356"]]
1598
+ TRANSACTION (1.1ms) COMMIT
1599
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1600
+  (5.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1601
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1602
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1603
+  (3.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)
1604
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1605
+ TRANSACTION (0.3ms) BEGIN
1606
+ ActiveRecord::InternalMetadata Create (0.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", "2021-01-21 20:54:39.856787"], ["updated_at", "2021-01-21 20:54:39.856787"]]
1607
+ TRANSACTION (0.8ms) COMMIT
1608
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1609
+ TRANSACTION (0.4ms) BEGIN
1610
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-21 20:54:39.867771"], ["key", "environment"]]
1611
+ TRANSACTION (0.9ms) COMMIT
1612
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1613
+ TRANSACTION (0.3ms) BEGIN
1614
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:54:39.879842"], ["updated_at", "2021-01-21 20:54:39.879842"]]
1615
+ TRANSACTION (0.9ms) COMMIT
1616
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1617
+ Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:54:40 +0000
1618
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1619
+ Processing by HomeController#index as */*
1620
+ Completed 200 OK in 46ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 4356)
1621
+
1622
+
1623
+  (0.7ms) select 1
1624
+  (0.5ms) select 1
1625
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1626
+  (58.2ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1627
+  (56.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1628
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1629
+  (4.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1630
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1631
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1632
+  (2.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)
1633
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1634
+ TRANSACTION (0.2ms) BEGIN
1635
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:35:43.657580"], ["updated_at", "2021-01-22 13:35:43.657580"]]
1636
+ TRANSACTION (0.6ms) COMMIT
1637
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1638
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1639
+ TRANSACTION (0.2ms) BEGIN
1640
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:35:43.669385"], ["updated_at", "2021-01-22 13:35:43.669385"]]
1641
+ TRANSACTION (0.5ms) COMMIT
1642
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1643
+  (4.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1644
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1645
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1646
+  (3.1ms) 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)
1647
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1648
+ TRANSACTION (0.2ms) BEGIN
1649
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:35:43.711352"], ["updated_at", "2021-01-22 13:35:43.711352"]]
1650
+ TRANSACTION (0.5ms) COMMIT
1651
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1652
+ TRANSACTION (0.2ms) BEGIN
1653
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 13:35:43.718956"], ["key", "environment"]]
1654
+ TRANSACTION (0.5ms) COMMIT
1655
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1656
+ TRANSACTION (0.2ms) BEGIN
1657
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:35:43.726803"], ["updated_at", "2021-01-22 13:35:43.726803"]]
1658
+ TRANSACTION (0.6ms) COMMIT
1659
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1660
+  (49.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1661
+  (62.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1662
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1663
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1664
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1665
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1666
+  (2.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)
1667
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1668
+ TRANSACTION (0.2ms) BEGIN
1669
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:37:38.844506"], ["updated_at", "2021-01-22 13:37:38.844506"]]
1670
+ TRANSACTION (0.5ms) COMMIT
1671
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1672
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1673
+ TRANSACTION (0.1ms) BEGIN
1674
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:37:38.855513"], ["updated_at", "2021-01-22 13:37:38.855513"]]
1675
+ TRANSACTION (0.5ms) COMMIT
1676
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1677
+  (4.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1678
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1679
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1680
+  (3.0ms) 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)
1681
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1682
+ TRANSACTION (0.2ms) BEGIN
1683
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:37:38.899368"], ["updated_at", "2021-01-22 13:37:38.899368"]]
1684
+ TRANSACTION (0.6ms) COMMIT
1685
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1686
+ TRANSACTION (0.2ms) BEGIN
1687
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 13:37:38.907503"], ["key", "environment"]]
1688
+ TRANSACTION (0.5ms) COMMIT
1689
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1690
+ TRANSACTION (0.4ms) BEGIN
1691
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:37:38.917669"], ["updated_at", "2021-01-22 13:37:38.917669"]]
1692
+ TRANSACTION (1.0ms) COMMIT
1693
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC