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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +97 -0
- data/Rakefile +10 -0
- data/app/services/hey_doctor/check_application_health_service.rb +29 -0
- data/app/services/hey_doctor/check_database_health_service.rb +43 -0
- data/app/services/hey_doctor/check_redis_health_service.rb +31 -0
- data/lib/hey_doctor.rb +22 -0
- data/lib/hey_doctor/engine.rb +10 -0
- data/lib/hey_doctor/version.rb +5 -0
- data/lib/tasks/hey_doctor_tasks.rake +5 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +1 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/controllers/home_controller.rb +5 -0
- data/spec/dummy/app/javascript/packs/application.js +15 -0
- data/spec/dummy/app/jobs/application_job.rb +7 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +33 -0
- data/spec/dummy/config.ru +11 -0
- data/spec/dummy/config/application.rb +42 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +21 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +66 -0
- data/spec/dummy/config/environments/production.rb +113 -0
- data/spec/dummy/config/environments/test.rb +59 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
- data/spec/dummy/config/initializers/cors.rb +16 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/redis.rb +1 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/puma.rb +43 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/schema.rb +18 -0
- data/spec/dummy/log/development.log +1693 -0
- data/spec/dummy/log/test.log +1258 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/dummy/tmp/pids/server.pid +1 -0
- data/spec/lib/hey_doctor/hey_doctor_spec.rb +42 -0
- data/spec/rails_helper.rb +27 -0
- data/spec/requests/health_check_spec.rb +28 -0
- data/spec/services/hey_doctor/check_application_health_service_spec.rb +46 -0
- data/spec/services/hey_doctor/check_database_health_service_spec.rb +91 -0
- data/spec/services/hey_doctor/check_redis_health_service_spec.rb +56 -0
- data/spec/spec_helper.rb +25 -0
- 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,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
|
+
[1m[35m (86.7ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
2
|
+
[1m[35m (92.7ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
3
|
+
[1m[35m (7.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
4
|
+
[1m[35m (4.8ms)[0m [1m[35mCREATE 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)[0m
|
5
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT pg_try_advisory_lock(1721091371569202325)[0m
|
6
|
+
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
7
|
+
[1m[36mActiveRecord::InternalMetadata Load (2.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
8
|
+
[1m[36mTRANSACTION (1.3ms)[0m [1m[35mBEGIN[0m
|
9
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-20 18:58:52.063062"], ["updated_at", "2021-01-20 18:58:52.063062"]]
|
10
|
+
[1m[36mTRANSACTION (1.6ms)[0m [1m[35mCOMMIT[0m
|
11
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT pg_advisory_unlock(1721091371569202325)[0m
|
12
|
+
[1m[35m (3.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
13
|
+
[1m[35m (1.1ms)[0m [1m[34mselect 1[0m
|
14
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
15
|
+
[1m[35m (117.8ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
16
|
+
[1m[35m (94.9ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
17
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
18
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
19
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
20
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
21
|
+
[1m[35m (6.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
22
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
23
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
24
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE 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)[0m
|
25
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
26
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
27
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-20 19:12:25.170333"], ["updated_at", "2021-01-20 19:12:25.170333"]]
|
28
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
29
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
30
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
31
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
32
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:12:25.185704"], ["updated_at", "2021-01-20 19:12:25.185704"]]
|
33
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
34
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
35
|
+
[1m[35m (5.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
36
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
37
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
38
|
+
[1m[35m (3.8ms)[0m [1m[35mCREATE 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)[0m
|
39
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
40
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
41
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-20 19:12:25.241819"], ["updated_at", "2021-01-20 19:12:25.241819"]]
|
42
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
43
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
44
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
45
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-20 19:12:25.251375"], ["key", "environment"]]
|
46
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
47
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
48
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
49
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:12:25.262163"], ["updated_at", "2021-01-20 19:12:25.262163"]]
|
50
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
51
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
52
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
53
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
54
|
+
[1m[35m (84.6ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
55
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
56
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
57
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
58
|
+
[1m[35m (1.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
59
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
60
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
61
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
62
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
63
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:30:31.169481"], ["updated_at", "2021-01-20 19:30:31.169481"]]
|
64
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
65
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
66
|
+
[1m[35m (0.5ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
67
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
68
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
69
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
70
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
71
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
72
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
73
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
74
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
75
|
+
[1m[35m (93.5ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
76
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
77
|
+
[1m[35m (5.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
78
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
79
|
+
[1m[35m (1.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
80
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE 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)[0m
|
81
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
82
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
83
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-20 19:30:55.932493"], ["updated_at", "2021-01-20 19:30:55.932493"]]
|
84
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
85
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
86
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
87
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
88
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 19:30:55.953097"], ["updated_at", "2021-01-20 19:30:55.953097"]]
|
89
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
90
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
91
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
92
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
93
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
94
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "development"], ["updated_at", "2021-01-20 19:30:55.994828"], ["key", "environment"]]
|
95
|
+
[1m[36mTRANSACTION (1.0ms)[0m [1m[35mCOMMIT[0m
|
96
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
97
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
98
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-20 19:30:56.006441"], ["key", "environment"]]
|
99
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
100
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
101
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
102
|
+
[1m[35m (0.3ms)[0m [1m[34mselect 1[0m
|
103
|
+
[1m[35m (0.3ms)[0m [1m[34mselect 1[0m
|
104
|
+
Started GET "/_ah/health" for 172.19.0.1 at 2021-01-20 19:43:37 +0000
|
105
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
106
|
+
Processing by HealthController#check as HTML
|
107
|
+
[1m[35m (0.7ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (0.3ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
129
|
+
Processing by HealthController#check as HTML
|
130
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (92.4ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
136
|
+
[1m[35m (10.3ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
137
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
138
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
139
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
140
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
141
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
142
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
143
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
144
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
145
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
146
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.6ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "development"], ["updated_at", "2021-01-20 20:14:51.213863"], ["key", "environment"]]
|
147
|
+
[1m[36mTRANSACTION (3.3ms)[0m [1m[35mCOMMIT[0m
|
148
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
149
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mBEGIN[0m
|
150
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.8ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-20 20:14:51.230637"], ["key", "environment"]]
|
151
|
+
[1m[36mTRANSACTION (1.3ms)[0m [1m[35mCOMMIT[0m
|
152
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
153
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
154
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
155
|
+
[1m[35m (87.3ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
156
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
157
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
158
|
+
[1m[35m (93.9ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
159
|
+
[1m[35m (93.6ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
160
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
161
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
162
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
163
|
+
[1m[35m (5.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
164
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
165
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
166
|
+
[1m[35m (4.3ms)[0m [1m[35mCREATE 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)[0m
|
167
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
168
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
169
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-20 20:17:34.714897"], ["updated_at", "2021-01-20 20:17:34.714897"]]
|
170
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
171
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
172
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
173
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
174
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-20 20:17:34.727712"], ["updated_at", "2021-01-20 20:17:34.727712"]]
|
175
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
176
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
177
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
178
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
179
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
180
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.4ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "development"], ["updated_at", "2021-01-20 20:17:34.758874"], ["key", "environment"]]
|
181
|
+
[1m[36mTRANSACTION (1.0ms)[0m [1m[35mCOMMIT[0m
|
182
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
183
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
184
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-20 20:17:34.767949"], ["key", "environment"]]
|
185
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
186
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
187
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
188
|
+
Started GET "/stalker" for 172.19.0.1 at 2021-01-20 20:29:55 +0000
|
189
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (57.9ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
299
|
+
[1m[35m (63.1ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
300
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
301
|
+
[1m[35m (4.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
302
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
303
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
304
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE 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)[0m
|
305
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
306
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
307
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:36:53.585165"], ["updated_at", "2021-01-21 14:36:53.585165"]]
|
308
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
309
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
310
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
311
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
312
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:36:53.595873"], ["updated_at", "2021-01-21 14:36:53.595873"]]
|
313
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
314
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
315
|
+
[1m[35m (4.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
316
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
317
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
318
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE 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)[0m
|
319
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
320
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
321
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:36:53.637356"], ["updated_at", "2021-01-21 14:36:53.637356"]]
|
322
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
323
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
324
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
325
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 14:36:53.644931"], ["key", "environment"]]
|
326
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
327
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
328
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
329
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:36:53.653200"], ["updated_at", "2021-01-21 14:36:53.653200"]]
|
330
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
331
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
332
|
+
[1m[35m (66.2ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
333
|
+
[1m[35m (56.8ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
334
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
335
|
+
[1m[35m (5.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
336
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
337
|
+
[1m[35m (1.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
338
|
+
[1m[35m (5.1ms)[0m [1m[35mCREATE 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)[0m
|
339
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.8ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
340
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
341
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:39:55.839635"], ["updated_at", "2021-01-21 14:39:55.839635"]]
|
342
|
+
[1m[36mTRANSACTION (1.3ms)[0m [1m[35mCOMMIT[0m
|
343
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
344
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
345
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
346
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:39:55.856735"], ["updated_at", "2021-01-21 14:39:55.856735"]]
|
347
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
348
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
349
|
+
[1m[35m (4.8ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
350
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
351
|
+
[1m[35m (0.8ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
352
|
+
[1m[35m (3.2ms)[0m [1m[35mCREATE 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)[0m
|
353
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
354
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
355
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:39:55.908179"], ["updated_at", "2021-01-21 14:39:55.908179"]]
|
356
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
357
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
358
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
359
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.3ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 14:39:55.916012"], ["key", "environment"]]
|
360
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
361
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
362
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
363
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:39:55.923680"], ["updated_at", "2021-01-21 14:39:55.923680"]]
|
364
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
365
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (65.1ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
416
|
+
[1m[35m (60.5ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
417
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
418
|
+
[1m[35m (5.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
419
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
420
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
421
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE 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)[0m
|
422
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
423
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
424
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:50:36.419806"], ["updated_at", "2021-01-21 14:50:36.419806"]]
|
425
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
426
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
427
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
428
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
429
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:50:36.430681"], ["updated_at", "2021-01-21 14:50:36.430681"]]
|
430
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
431
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
432
|
+
[1m[35m (4.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
433
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
434
|
+
[1m[35m (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
435
|
+
[1m[35m (3.2ms)[0m [1m[35mCREATE 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)[0m
|
436
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
437
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
438
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 14:50:36.480264"], ["updated_at", "2021-01-21 14:50:36.480264"]]
|
439
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
440
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
441
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
442
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.3ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 14:50:36.487876"], ["key", "environment"]]
|
443
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
444
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
445
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
446
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 14:50:36.495762"], ["updated_at", "2021-01-21 14:50:36.495762"]]
|
447
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
448
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
449
|
+
Started GET "/_ah/health" for 172.19.0.1 at 2021-01-21 14:50:39 +0000
|
450
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
451
|
+
Processing by Stalker::HealthController#check as */*
|
452
|
+
[1m[35m (0.4ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (59.6ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
475
|
+
[1m[35m (89.0ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
476
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
477
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
478
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
479
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
480
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE 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)[0m
|
481
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
482
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
483
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 15:09:49.360559"], ["updated_at", "2021-01-21 15:09:49.360559"]]
|
484
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
485
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
486
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
487
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
488
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 15:09:49.371915"], ["updated_at", "2021-01-21 15:09:49.371915"]]
|
489
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
490
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
491
|
+
[1m[35m (4.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
492
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
493
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
494
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE 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)[0m
|
495
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
496
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
497
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 15:09:49.413451"], ["updated_at", "2021-01-21 15:09:49.413451"]]
|
498
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
499
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
500
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
501
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.3ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 15:09:49.420876"], ["key", "environment"]]
|
502
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
503
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
504
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
505
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 15:09:49.428968"], ["updated_at", "2021-01-21 15:09:49.428968"]]
|
506
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
507
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (103.5ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
665
|
+
[1m[35m (80.4ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
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
|
+
[1m[35m (102.6ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
745
|
+
[1m[35m (95.9ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
746
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
747
|
+
[1m[35m (0.7ms)[0m [1m[34mselect 1[0m
|
748
|
+
[1m[35m (0.2ms)[0m [1m[34mselect 1[0m
|
749
|
+
[1m[35m (0.4ms)[0m [1m[34mselect 1[0m
|
750
|
+
[1m[35m (0.3ms)[0m [1m[34mselect 1[0m
|
751
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
752
|
+
[1m[35m (75.6ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
753
|
+
[1m[35m (94.6ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
754
|
+
[1m[35m (0.3ms)[0m [1m[34mselect 1[0m
|
755
|
+
[1m[35m (0.4ms)[0m [1m[34mselect 1[0m
|
756
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
757
|
+
[1m[35m (0.4ms)[0m [1m[34mselect 1[0m
|
758
|
+
[1m[35m (0.9ms)[0m [1m[34mselect 1[0m
|
759
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
760
|
+
[1m[35m (90.5ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
761
|
+
[1m[35m (79.8ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
762
|
+
[1m[35m (0.3ms)[0m [1m[34mselect 1[0m
|
763
|
+
[1m[35m (0.4ms)[0m [1m[34mselect 1[0m
|
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
|
+
[1m[35m (81.9ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
817
|
+
[1m[35m (97.1ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
818
|
+
[1m[35m (7.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
819
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE 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)[0m
|
820
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT pg_try_advisory_lock(1721091371569202325)[0m
|
821
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
822
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
823
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
824
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 17:53:34.017403"], ["updated_at", "2021-01-21 17:53:34.017403"]]
|
825
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
826
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT pg_advisory_unlock(1721091371569202325)[0m
|
827
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
828
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 17:53:52 +0000
|
829
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (108.5ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
948
|
+
[1m[35m (108.0ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
949
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
950
|
+
[1m[35m (7.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
951
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
952
|
+
[1m[35m (1.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
953
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE 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)[0m
|
954
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
955
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
956
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:17:01.139710"], ["updated_at", "2021-01-21 18:17:01.139710"]]
|
957
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
958
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
959
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
960
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
961
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:17:01.155698"], ["updated_at", "2021-01-21 18:17:01.155698"]]
|
962
|
+
[1m[36mTRANSACTION (1.5ms)[0m [1m[35mCOMMIT[0m
|
963
|
+
[1m[35mSQL (0.8ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
964
|
+
[1m[35m (13.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
965
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
966
|
+
[1m[35m (2.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
967
|
+
[1m[35m (6.8ms)[0m [1m[35mCREATE 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)[0m
|
968
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
969
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
970
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:17:01.238496"], ["updated_at", "2021-01-21 18:17:01.238496"]]
|
971
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
972
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
973
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
974
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 18:17:01.249076"], ["key", "environment"]]
|
975
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
976
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
977
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
978
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:17:01.261323"], ["updated_at", "2021-01-21 18:17:01.261323"]]
|
979
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
980
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
981
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:18:02 +0000
|
982
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (0.8ms)[0m [1m[34mselect 1[0m
|
990
|
+
[1m[35m (1.2ms)[0m [1m[34mselect 1[0m
|
991
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
1000
|
+
[1m[35m (0.7ms)[0m [1m[34mselect 1[0m
|
1001
|
+
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
1008
|
+
[1m[35m (0.8ms)[0m [1m[34mselect 1[0m
|
1009
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (0.8ms)[0m [1m[34mselect 1[0m
|
1016
|
+
[1m[35m (0.8ms)[0m [1m[34mselect 1[0m
|
1017
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (99.3ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1076
|
+
[1m[35m (83.2ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1077
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1078
|
+
[1m[35m (5.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1079
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1080
|
+
[1m[35m (1.5ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1081
|
+
[1m[35m (5.9ms)[0m [1m[35mCREATE 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)[0m
|
1082
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1083
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mBEGIN[0m
|
1084
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:23:47.172691"], ["updated_at", "2021-01-21 18:23:47.172691"]]
|
1085
|
+
[1m[36mTRANSACTION (1.5ms)[0m [1m[35mCOMMIT[0m
|
1086
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1087
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.8ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1088
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mBEGIN[0m
|
1089
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.9ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:23:47.199443"], ["updated_at", "2021-01-21 18:23:47.199443"]]
|
1090
|
+
[1m[36mTRANSACTION (1.3ms)[0m [1m[35mCOMMIT[0m
|
1091
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1092
|
+
[1m[35m (8.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1093
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1094
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1095
|
+
[1m[35m (6.5ms)[0m [1m[35mCREATE 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)[0m
|
1096
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1097
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1098
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:23:47.272492"], ["updated_at", "2021-01-21 18:23:47.272492"]]
|
1099
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
1100
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1101
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1102
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.6ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 18:23:47.283053"], ["key", "environment"]]
|
1103
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
1104
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1105
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1106
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:23:47.313148"], ["updated_at", "2021-01-21 18:23:47.313148"]]
|
1107
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1108
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1109
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:23:50 +0000
|
1110
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1111
|
+
Processing by HomeController#index as */*
|
1112
|
+
Completed 200 OK in 61ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 4356)
|
1113
|
+
|
1114
|
+
|
1115
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
1116
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
1117
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (101.7ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1129
|
+
[1m[35m (106.6ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1130
|
+
[1m[35mSQL (0.7ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1131
|
+
[1m[35m (7.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1132
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1133
|
+
[1m[35m (1.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1134
|
+
[1m[35m (5.3ms)[0m [1m[35mCREATE 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)[0m
|
1135
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1136
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1137
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:30:03.471338"], ["updated_at", "2021-01-21 18:30:03.471338"]]
|
1138
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1139
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1140
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1141
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1142
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:30:03.486704"], ["updated_at", "2021-01-21 18:30:03.486704"]]
|
1143
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
1144
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1145
|
+
[1m[35m (7.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1146
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1147
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1148
|
+
[1m[35m (5.5ms)[0m [1m[35mCREATE 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)[0m
|
1149
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1150
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1151
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.8ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:30:03.548884"], ["updated_at", "2021-01-21 18:30:03.548884"]]
|
1152
|
+
[1m[36mTRANSACTION (1.1ms)[0m [1m[35mCOMMIT[0m
|
1153
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1154
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1155
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.6ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 18:30:03.562160"], ["key", "environment"]]
|
1156
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1157
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.9ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1158
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1159
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:30:03.574233"], ["updated_at", "2021-01-21 18:30:03.574233"]]
|
1160
|
+
[1m[36mTRANSACTION (1.0ms)[0m [1m[35mCOMMIT[0m
|
1161
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1162
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:30:36 +0000
|
1163
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1164
|
+
Processing by HomeController#index as */*
|
1165
|
+
Completed 200 OK in 70ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 4359)
|
1166
|
+
|
1167
|
+
|
1168
|
+
[1m[35m (0.4ms)[0m [1m[34mselect 1[0m
|
1169
|
+
[1m[35m (0.9ms)[0m [1m[34mselect 1[0m
|
1170
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (2.0ms)[0m [1m[34mselect 1[0m
|
1177
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
1178
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
1185
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
1186
|
+
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (99.1ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1240
|
+
[1m[35m (85.8ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1241
|
+
[1m[35mSQL (0.7ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1242
|
+
[1m[35m (7.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1243
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1244
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1245
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE 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)[0m
|
1246
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1247
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1248
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.8ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:38:42.320052"], ["updated_at", "2021-01-21 18:38:42.320052"]]
|
1249
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
1250
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1251
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1252
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1253
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:38:42.335685"], ["updated_at", "2021-01-21 18:38:42.335685"]]
|
1254
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1255
|
+
[1m[35mSQL (0.6ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1256
|
+
[1m[35m (6.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1257
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1258
|
+
[1m[35m (9.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1259
|
+
[1m[35m (6.1ms)[0m [1m[35mCREATE 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)[0m
|
1260
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1261
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1262
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:38:42.405186"], ["updated_at", "2021-01-21 18:38:42.405186"]]
|
1263
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1264
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1265
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1266
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.4ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 18:38:42.415374"], ["key", "environment"]]
|
1267
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
1268
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1269
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1270
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:38:42.426015"], ["updated_at", "2021-01-21 18:38:42.426015"]]
|
1271
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1272
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1273
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 18:38:46 +0000
|
1274
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1275
|
+
Processing by HomeController#index as */*
|
1276
|
+
Completed 200 OK in 52ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 4358)
|
1277
|
+
|
1278
|
+
|
1279
|
+
[1m[35m (1.8ms)[0m [1m[34mselect 1[0m
|
1280
|
+
[1m[35m (0.6ms)[0m [1m[34mselect 1[0m
|
1281
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (102.4ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1335
|
+
[1m[35m (126.1ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1336
|
+
[1m[35mSQL (0.6ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1337
|
+
[1m[35m (6.9ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1338
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1339
|
+
[1m[35m (1.3ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1340
|
+
[1m[35m (4.9ms)[0m [1m[35mCREATE 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)[0m
|
1341
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1342
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1343
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.8ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:56:16.606561"], ["updated_at", "2021-01-21 18:56:16.606561"]]
|
1344
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1345
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1346
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1347
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1348
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:56:16.621968"], ["updated_at", "2021-01-21 18:56:16.621968"]]
|
1349
|
+
[1m[36mTRANSACTION (1.0ms)[0m [1m[35mCOMMIT[0m
|
1350
|
+
[1m[35mSQL (0.6ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1351
|
+
[1m[35m (6.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1352
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1353
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1354
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE 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)[0m
|
1355
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1356
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1357
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 18:56:16.681619"], ["updated_at", "2021-01-21 18:56:16.681619"]]
|
1358
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1359
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1360
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1361
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 18:56:16.694836"], ["key", "environment"]]
|
1362
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1363
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1364
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1365
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 18:56:16.705520"], ["updated_at", "2021-01-21 18:56:16.705520"]]
|
1366
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1367
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1368
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1369
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1370
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:29:05 +0000
|
1371
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1372
|
+
Processing by HomeController#index as */*
|
1373
|
+
Completed 200 OK in 40ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 4357)
|
1374
|
+
|
1375
|
+
|
1376
|
+
[1m[35m (0.7ms)[0m [1m[34mselect 1[0m
|
1377
|
+
[1m[35m (0.9ms)[0m [1m[34mselect 1[0m
|
1378
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (93.0ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1432
|
+
[1m[35m (80.2ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1433
|
+
[1m[35mSQL (1.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1434
|
+
[1m[35m (6.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1435
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1436
|
+
[1m[35m (1.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1437
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE 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)[0m
|
1438
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1439
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1440
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 20:31:52.766135"], ["updated_at", "2021-01-21 20:31:52.766135"]]
|
1441
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1442
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1443
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1444
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1445
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:31:52.779999"], ["updated_at", "2021-01-21 20:31:52.779999"]]
|
1446
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1447
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1448
|
+
[1m[35m (5.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1449
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1450
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1451
|
+
[1m[35m (4.2ms)[0m [1m[35mCREATE 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)[0m
|
1452
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1453
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1454
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 20:31:52.831437"], ["updated_at", "2021-01-21 20:31:52.831437"]]
|
1455
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1456
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1457
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1458
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.5ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 20:31:52.842372"], ["key", "environment"]]
|
1459
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
1460
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1461
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1462
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:31:52.851728"], ["updated_at", "2021-01-21 20:31:52.851728"]]
|
1463
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1464
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1465
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:31:55 +0000
|
1466
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1467
|
+
Processing by HomeController#index as */*
|
1468
|
+
Completed 200 OK in 40ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 4355)
|
1469
|
+
|
1470
|
+
|
1471
|
+
[1m[35m (0.3ms)[0m [1m[34mselect 1[0m
|
1472
|
+
[1m[35m (0.7ms)[0m [1m[34mselect 1[0m
|
1473
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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
|
+
[1m[35m (94.5ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1584
|
+
[1m[35m (104.1ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1585
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1586
|
+
[1m[35m (5.9ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1587
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1588
|
+
[1m[35m (1.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1589
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE 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)[0m
|
1590
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1591
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1592
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 20:54:39.788687"], ["updated_at", "2021-01-21 20:54:39.788687"]]
|
1593
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1594
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1595
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1596
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1597
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:54:39.803356"], ["updated_at", "2021-01-21 20:54:39.803356"]]
|
1598
|
+
[1m[36mTRANSACTION (1.1ms)[0m [1m[35mCOMMIT[0m
|
1599
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1600
|
+
[1m[35m (5.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1601
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1602
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1603
|
+
[1m[35m (3.9ms)[0m [1m[35mCREATE 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)[0m
|
1604
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1605
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1606
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-21 20:54:39.856787"], ["updated_at", "2021-01-21 20:54:39.856787"]]
|
1607
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[35mCOMMIT[0m
|
1608
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1609
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1610
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.6ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-21 20:54:39.867771"], ["key", "environment"]]
|
1611
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1612
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1613
|
+
[1m[36mTRANSACTION (0.3ms)[0m [1m[35mBEGIN[0m
|
1614
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-21 20:54:39.879842"], ["updated_at", "2021-01-21 20:54:39.879842"]]
|
1615
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[35mCOMMIT[0m
|
1616
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1617
|
+
Started HEAD "/" for 127.0.0.1 at 2021-01-21 20:54:40 +0000
|
1618
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1619
|
+
Processing by HomeController#index as */*
|
1620
|
+
Completed 200 OK in 46ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 4356)
|
1621
|
+
|
1622
|
+
|
1623
|
+
[1m[35m (0.7ms)[0m [1m[34mselect 1[0m
|
1624
|
+
[1m[35m (0.5ms)[0m [1m[34mselect 1[0m
|
1625
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1626
|
+
[1m[35m (58.2ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1627
|
+
[1m[35m (56.0ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1628
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1629
|
+
[1m[35m (4.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1630
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1631
|
+
[1m[35m (3.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1632
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE 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)[0m
|
1633
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1634
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1635
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:35:43.657580"], ["updated_at", "2021-01-22 13:35:43.657580"]]
|
1636
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
1637
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1638
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1639
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1640
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:35:43.669385"], ["updated_at", "2021-01-22 13:35:43.669385"]]
|
1641
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
1642
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1643
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1644
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1645
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1646
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE 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)[0m
|
1647
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1648
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1649
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:35:43.711352"], ["updated_at", "2021-01-22 13:35:43.711352"]]
|
1650
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
1651
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1652
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1653
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.3ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-22 13:35:43.718956"], ["key", "environment"]]
|
1654
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
1655
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1656
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1657
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:35:43.726803"], ["updated_at", "2021-01-22 13:35:43.726803"]]
|
1658
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
1659
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1660
|
+
[1m[35m (49.5ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
1661
|
+
[1m[35m (62.6ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
1662
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1663
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1664
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1665
|
+
[1m[35m (0.8ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1666
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE 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)[0m
|
1667
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1668
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1669
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:37:38.844506"], ["updated_at", "2021-01-22 13:37:38.844506"]]
|
1670
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
1671
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1672
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1673
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mBEGIN[0m
|
1674
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:37:38.855513"], ["updated_at", "2021-01-22 13:37:38.855513"]]
|
1675
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
1676
|
+
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1677
|
+
[1m[35m (4.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
1678
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
1679
|
+
[1m[35m (0.8ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
1680
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE 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)[0m
|
1681
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1682
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1683
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 13:37:38.899368"], ["updated_at", "2021-01-22 13:37:38.899368"]]
|
1684
|
+
[1m[36mTRANSACTION (0.6ms)[0m [1m[35mCOMMIT[0m
|
1685
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
1686
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
1687
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.4ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3[0m [["value", "test"], ["updated_at", "2021-01-22 13:37:38.907503"], ["key", "environment"]]
|
1688
|
+
[1m[36mTRANSACTION (0.5ms)[0m [1m[35mCOMMIT[0m
|
1689
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
1690
|
+
[1m[36mTRANSACTION (0.4ms)[0m [1m[35mBEGIN[0m
|
1691
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:37:38.917669"], ["updated_at", "2021-01-22 13:37:38.917669"]]
|
1692
|
+
[1m[36mTRANSACTION (1.0ms)[0m [1m[35mCOMMIT[0m
|
1693
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|