hey_doctor 1.0.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0824d2e802a96ba8586c63f1ee7a193ca8675ce69b35d73f0dcdaeebf7c5e082'
4
- data.tar.gz: 567451703ce9ead34d72691ba51071e8c11e39c9086d5cf9cec63b5e04feca38
3
+ metadata.gz: cda96ff9a15cd132c43d1db20b1e0841dace07283ba2d7a7a18d209876c8580f
4
+ data.tar.gz: 64de4f62d696fa18bc19c54e133b1c10c220ed2f2fce4ce9839ee8879dd4f90d
5
5
  SHA512:
6
- metadata.gz: f5add1a4598b39cc55c0f5b50855e1089caf5e3f5728a08988a75e98b0e4cf1fa1a98a4eeb43e286cf1234cd818ea33f0e91c8e6aed596d6cbf52dd84a4b91c9
7
- data.tar.gz: f022c57f63cfa656aea89af82e0d85d8c57349634c73fd45a9f4c109a520774159d1f92b0d26c39ac24e414a9aeb2c990bddd317d313685457c08257691069b2
6
+ metadata.gz: 89470c20d3c4e2dd98079368ea834e840433c005beb887da2d1741e1e5c12afd807ef138b0517ec01256716e7a40f37c3dd9422022dcff0e4a55c05cdd1ce30f
7
+ data.tar.gz: 566afcc9e71211d6aeeae55baa92f90cfe9c096ba928e95343ff06f44bacb51ed94abf5de752f0b9e650d537471f2c3d78d953b9e5acb6fb342a32cabe33f890
data/README.md CHANGED
@@ -29,7 +29,7 @@ After installing this gem it will mount a endpoint in `/_ah/health`, this will b
29
29
 
30
30
  ## Installation
31
31
 
32
- If you have a redis instance in you application add the following initializer to create a `Redis.current`, so it don't need to use global vars, or create a new connection each request:
32
+ * If you have a redis instance in you application add the following initializer to create a `Redis.current`, so it don't need to use global vars, or create a new connection each request:
33
33
 
34
34
  ```ruby
35
35
  # config/initializers/redis.rb
@@ -37,24 +37,29 @@ If you have a redis instance in you application add the following initializer to
37
37
  Redis.current ||= Redis.new(url: ENV['REDIS_URL'])
38
38
  ```
39
39
 
40
- Add this line to your application's Gemfile:
40
+ It is very important to use the env `REDIS_URL`, because it will be used to check whether or not to render the redis response.
41
+
42
+ * Add a env var `RAILS_PORT` with the current application port, it will also work with the env `PORT` for backward compatibility with GAE applications.
43
+
44
+ * Add this line to your application's Gemfile:
41
45
 
42
46
  ```ruby
43
47
  gem 'hey_doctor'
44
48
  ```
45
49
 
46
- And then execute:
50
+ * And then execute:
51
+
47
52
  ```bash
48
53
  bundle install
49
54
  ```
50
55
 
51
- After installing the gem just mount the HealthCheck endpoint inside config.ru:
56
+ * After installing the gem, mount the HealthCheck endpoint inside config.ru:
52
57
 
53
58
  ```ruby
54
59
  # config.ru
55
60
 
56
61
  # bunch of requires here
57
- require "hey_doctor"
62
+ require 'hey_doctor'
58
63
 
59
64
  map '/_ah/health' do
60
65
  run HeyDoctor::Rack::HealthCheck.new
@@ -63,6 +68,16 @@ end
63
68
  ...
64
69
  ```
65
70
 
71
+ * The last step is to mount the engine into your application, so if the application is down the middleware will notice:
72
+
73
+ ```ruby
74
+ Rails.application.routes.draw do
75
+ mount HeyDoctor::Engine, at: '/_ah/app_health'
76
+
77
+ ...
78
+ end
79
+ ```
80
+
66
81
  ## Developing
67
82
 
68
83
  ```bash
@@ -70,7 +85,7 @@ docker-compose build && docker-compose up
70
85
 
71
86
  docker-compose exec web bash
72
87
 
73
- rails db:setup
88
+ bundle exec rake db:setup
74
89
 
75
90
  rubocop -A && rspec
76
91
  ```
@@ -82,11 +97,22 @@ Minimum coverage is set to 95%.
82
97
  Change the tag in `lib/hey_doctor/version.rb` each release using [SEMVER](https://semver.org/lang/pt-BR/).
83
98
 
84
99
  ```bash
100
+ # After merging the PR checkout to master branch and update it.
101
+ git checkout master
102
+ git pull
103
+
104
+ # build gem in pkg/hey_doctor-TAG.gem (Also changes Gemfile.lock)
85
105
  bundle exec rake build
86
- # build gem in pkg/hey_doctor-TAG.gem
106
+
107
+ # Add the changed files
108
+ git add Gemfile.lock lib/hey_doctor/version.rb
109
+ git commit -m "v0.0.0"
110
+
111
+ # Create a new git tag
112
+ git tag -a v0.0.0 -m "Description here."
87
113
 
88
114
  bundle exec rake release
89
- # Ask for rubygems credentials and makes the release
115
+ # Ask for rubygems credentials and makes the release, push the commit and the tag
90
116
  ```
91
117
  ## Contributing
92
118
 
@@ -21,9 +21,17 @@ class HeyDoctor::CheckApplicationHealthService
21
21
  private
22
22
 
23
23
  def responding?
24
- Net::HTTP.start('localhost', 8000) { |http| http.head('/') }.code == '200'
24
+ app_http_code == '200'
25
25
  rescue StandardError
26
26
  false
27
27
  end
28
+
29
+ def app_http_code
30
+ port = ENV['RAILS_PORT'] || ENV['PORT']
31
+
32
+ Net::HTTP.start('localhost', port) do |http|
33
+ http.head('/_ah/app_health')
34
+ end.code
35
+ end
28
36
  end
29
37
  end
data/config/routes.rb ADDED
@@ -0,0 +1,3 @@
1
+ HeyDoctor::Engine.routes.draw do
2
+ root to: proc { [200, {}, ['']] }
3
+ end
data/lib/hey_doctor.rb CHANGED
@@ -12,11 +12,16 @@ module HeyDoctor::Rack
12
12
  private
13
13
 
14
14
  def status
15
- {
15
+ response = {
16
16
  app: ::HeyDoctor::CheckApplicationHealthService.call,
17
- database: ::HeyDoctor::CheckDatabaseHealthService.call,
18
- redis: ::HeyDoctor::CheckRedisHealthService.call
19
- }.to_json
17
+ database: ::HeyDoctor::CheckDatabaseHealthService.call
18
+ }
19
+
20
+ unless ENV['REDIS_URL'].blank?
21
+ response.merge!({ redis: ::HeyDoctor::CheckRedisHealthService.call })
22
+ end
23
+
24
+ response.to_json
20
25
  end
21
26
  end
22
27
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HeyDoctor
4
- VERSION = '1.0.0'
4
+ VERSION = '1.2.0'
5
5
  end
@@ -1,26 +1,30 @@
1
- require_relative "boot"
1
+ require_relative 'boot'
2
2
 
3
- require "rails"
3
+ require 'rails'
4
4
  # Pick the frameworks you want:
5
- require "active_model/railtie"
6
- require "active_job/railtie"
7
- require "active_record/railtie"
8
- require "active_storage/engine"
9
- require "action_controller/railtie"
10
- require "action_mailer/railtie"
11
- require "action_mailbox/engine"
12
- require "action_text/engine"
13
- require "action_view/railtie"
14
- require "action_cable/engine"
15
- # require "sprockets/railtie"
16
- # require "rails/test_unit/railtie"
5
+ require 'active_model/railtie'
6
+ require 'active_job/railtie'
7
+ require 'active_record/railtie'
8
+ require 'active_storage/engine'
9
+ require 'action_controller/railtie'
10
+ require 'action_mailer/railtie'
11
+ require 'action_mailbox/engine'
12
+ require 'action_text/engine'
13
+ require 'action_view/railtie'
14
+ require 'action_cable/engine'
15
+ # require 'sprockets/railtie'
16
+ # require 'rails/test_unit/railtie'
17
17
 
18
18
  # Require the gems listed in Gemfile, including any gems
19
19
  # you've limited to :test, :development, or :production.
20
20
  Bundler.require(*Rails.groups)
21
- require "hey_doctor"
21
+ require 'hey_doctor'
22
22
  require 'dotenv-rails'
23
- require 'redis'
23
+ begin
24
+ require 'redis'
25
+ rescue LoadError
26
+ puts 'Not using Redis'
27
+ end
24
28
 
25
29
  module Dummy
26
30
  class Application < Rails::Application
@@ -31,8 +35,8 @@ module Dummy
31
35
  # These settings can be overridden in specific environments using the files
32
36
  # in config/environments, which are processed later.
33
37
  #
34
- # config.time_zone = "Central Time (US & Canada)"
35
- # config.eager_load_paths << Rails.root.join("extras")
38
+ # config.time_zone = 'Central Time (US & Canada)'
39
+ # config.eager_load_paths << Rails.root.join('extras')
36
40
 
37
41
  # Only loads a smaller set of middleware suitable for API only apps.
38
42
  # Middleware like session, flash, cookies can be added back manually.
@@ -1,3 +1,3 @@
1
1
  Rails.application.routes.draw do
2
- root to: 'home#index'
2
+ mount HeyDoctor::Engine, at: '/_ah/app_health'
3
3
  end
@@ -1691,3 +1691,814 @@ Completed 200 OK in 46ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 4356
1691
1691
  ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 13:37:38.917669"], ["updated_at", "2021-01-22 13:37:38.917669"]]
1692
1692
  TRANSACTION (1.0ms) COMMIT
1693
1693
   (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1694
+  (52.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1695
+  (67.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1696
+  (56.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1697
+  (67.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1698
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1699
+  (5.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1700
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1701
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1702
+  (4.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1703
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1704
+ TRANSACTION (0.2ms) BEGIN
1705
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:17:52.561425"], ["updated_at", "2021-01-22 14:17:52.561425"]]
1706
+ TRANSACTION (0.6ms) COMMIT
1707
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1708
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1709
+ TRANSACTION (0.2ms) BEGIN
1710
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:17:52.574141"], ["updated_at", "2021-01-22 14:17:52.574141"]]
1711
+ TRANSACTION (0.6ms) COMMIT
1712
+  (65.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1713
+  (0.4ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1714
+  (74.3ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1715
+  (59.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1716
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1717
+  (5.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1718
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1719
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1720
+  (4.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1721
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1722
+ TRANSACTION (0.3ms) BEGIN
1723
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:22:31.161959"], ["updated_at", "2021-01-22 14:22:31.161959"]]
1724
+ TRANSACTION (0.7ms) COMMIT
1725
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1726
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1727
+ TRANSACTION (0.5ms) BEGIN
1728
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:22:31.175966"], ["updated_at", "2021-01-22 14:22:31.175966"]]
1729
+ TRANSACTION (0.7ms) COMMIT
1730
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1731
+  (5.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1732
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1733
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1734
+  (3.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1735
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1736
+ TRANSACTION (0.2ms) BEGIN
1737
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:22:31.229712"], ["updated_at", "2021-01-22 14:22:31.229712"]]
1738
+ TRANSACTION (0.7ms) COMMIT
1739
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1740
+ TRANSACTION (0.2ms) BEGIN
1741
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 14:22:31.238502"], ["key", "environment"]]
1742
+ TRANSACTION (0.8ms) COMMIT
1743
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1744
+ TRANSACTION (0.3ms) BEGIN
1745
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:22:31.249611"], ["updated_at", "2021-01-22 14:22:31.249611"]]
1746
+ TRANSACTION (0.7ms) COMMIT
1747
+  (64.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1748
+  (71.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1749
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1750
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1751
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1752
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1753
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1754
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1755
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1756
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1757
+  (4.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1758
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1759
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1760
+  (3.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1761
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1762
+ TRANSACTION (0.2ms) BEGIN
1763
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:23:13.405700"], ["updated_at", "2021-01-22 14:23:13.405700"]]
1764
+ TRANSACTION (0.8ms) COMMIT
1765
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1766
+ TRANSACTION (0.2ms) BEGIN
1767
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 14:23:13.415663"], ["key", "environment"]]
1768
+ TRANSACTION (0.6ms) COMMIT
1769
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1770
+ TRANSACTION (0.2ms) BEGIN
1771
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:23:13.423517"], ["updated_at", "2021-01-22 14:23:13.423517"]]
1772
+ TRANSACTION (0.7ms) COMMIT
1773
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1774
+  (3.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1775
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1776
+  (78.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1777
+  (73.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1778
+ SQL (1.0ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1779
+  (6.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1780
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1781
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1782
+  (4.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1783
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1784
+ TRANSACTION (0.5ms) BEGIN
1785
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:38:42.464052"], ["updated_at", "2021-01-22 14:38:42.464052"]]
1786
+ TRANSACTION (0.6ms) COMMIT
1787
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1788
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1789
+ TRANSACTION (0.3ms) BEGIN
1790
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:38:42.480810"], ["updated_at", "2021-01-22 14:38:42.480810"]]
1791
+ TRANSACTION (0.7ms) COMMIT
1792
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1793
+  (6.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1794
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1795
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1796
+  (4.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1797
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1798
+ TRANSACTION (0.3ms) BEGIN
1799
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:38:42.545021"], ["updated_at", "2021-01-22 14:38:42.545021"]]
1800
+ TRANSACTION (0.9ms) COMMIT
1801
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1802
+ TRANSACTION (0.2ms) BEGIN
1803
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 14:38:42.554331"], ["key", "environment"]]
1804
+ TRANSACTION (0.6ms) COMMIT
1805
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1806
+ TRANSACTION (0.2ms) BEGIN
1807
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:38:42.563635"], ["updated_at", "2021-01-22 14:38:42.563635"]]
1808
+ TRANSACTION (0.7ms) COMMIT
1809
+  (59.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1810
+  (63.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1811
+  (111.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1812
+  (75.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1813
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1814
+  (5.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1815
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1816
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1817
+  (3.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1818
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1819
+ TRANSACTION (0.3ms) BEGIN
1820
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:47:23.945882"], ["updated_at", "2021-01-22 14:47:23.945882"]]
1821
+ TRANSACTION (0.9ms) COMMIT
1822
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1823
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1824
+ TRANSACTION (0.4ms) BEGIN
1825
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:47:23.961969"], ["updated_at", "2021-01-22 14:47:23.961969"]]
1826
+ TRANSACTION (0.7ms) COMMIT
1827
+  (62.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1828
+  (71.4ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1829
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1830
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1831
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1832
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1833
+  (3.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1834
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1835
+ TRANSACTION (0.3ms) BEGIN
1836
+ ActiveRecord::InternalMetadata Create (1.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:47:53.259141"], ["updated_at", "2021-01-22 14:47:53.259141"]]
1837
+ TRANSACTION (0.7ms) COMMIT
1838
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1839
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1840
+ TRANSACTION (0.2ms) BEGIN
1841
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:47:53.272918"], ["updated_at", "2021-01-22 14:47:53.272918"]]
1842
+ TRANSACTION (0.6ms) COMMIT
1843
+  (0.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1844
+  (87.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1845
+  (0.2ms) select 1
1846
+  (0.3ms) select 1
1847
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 14:49:11 +0000
1848
+
1849
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1850
+
1851
+  (1.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1852
+  (63.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1853
+ SQL (1.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1854
+  (27.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1855
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1856
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1857
+  (3.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1858
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1859
+ TRANSACTION (0.3ms) BEGIN
1860
+ ActiveRecord::InternalMetadata Create (1.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:49:32.641378"], ["updated_at", "2021-01-22 14:49:32.641378"]]
1861
+ TRANSACTION (0.8ms) COMMIT
1862
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1863
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1864
+ TRANSACTION (0.4ms) BEGIN
1865
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:49:32.656370"], ["updated_at", "2021-01-22 14:49:32.656370"]]
1866
+ TRANSACTION (0.6ms) COMMIT
1867
+  (0.3ms) select 1
1868
+  (0.7ms) select 1
1869
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 14:49:43 +0000
1870
+
1871
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1872
+
1873
+  (0.4ms) select 1
1874
+  (0.5ms) select 1
1875
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 14:49:45 +0000
1876
+
1877
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1878
+
1879
+  (0.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1880
+  (98.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1881
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1882
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1883
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1884
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1885
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1886
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1887
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1888
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1889
+  (4.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1890
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1891
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1892
+  (3.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1893
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1894
+ TRANSACTION (0.3ms) BEGIN
1895
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:49:58.303733"], ["updated_at", "2021-01-22 14:49:58.303733"]]
1896
+ TRANSACTION (0.6ms) COMMIT
1897
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1898
+ TRANSACTION (0.2ms) BEGIN
1899
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 14:49:58.311874"], ["key", "environment"]]
1900
+ TRANSACTION (0.6ms) COMMIT
1901
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1902
+ TRANSACTION (0.3ms) BEGIN
1903
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:49:58.320774"], ["updated_at", "2021-01-22 14:49:58.320774"]]
1904
+ TRANSACTION (0.6ms) COMMIT
1905
+  (0.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1906
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1907
+  (89.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1908
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1909
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1910
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1911
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1912
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1913
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1914
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1915
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1916
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1917
+  (5.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1918
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1919
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
1920
+  (2.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1921
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1922
+ TRANSACTION (0.2ms) BEGIN
1923
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 14:50:22.342475"], ["updated_at", "2021-01-22 14:50:22.342475"]]
1924
+ TRANSACTION (0.6ms) COMMIT
1925
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1926
+ TRANSACTION (0.2ms) BEGIN
1927
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 14:50:22.351308"], ["key", "environment"]]
1928
+ TRANSACTION (0.7ms) COMMIT
1929
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1930
+ TRANSACTION (0.2ms) BEGIN
1931
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 14:50:22.360624"], ["updated_at", "2021-01-22 14:50:22.360624"]]
1932
+ TRANSACTION (0.7ms) COMMIT
1933
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1934
+  (0.5ms) select 1
1935
+  (0.8ms) select 1
1936
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 14:50:26 +0000
1937
+
1938
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1939
+
1940
+  (0.3ms) select 1
1941
+  (0.5ms) select 1
1942
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 14:50:28 +0000
1943
+
1944
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1945
+
1946
+  (0.3ms) select 1
1947
+  (0.5ms) select 1
1948
+  (0.5ms) select 1
1949
+  (0.4ms) select 1
1950
+  (0.4ms) select 1
1951
+  (0.3ms) select 1
1952
+  (0.6ms) select 1
1953
+  (0.6ms) select 1
1954
+  (110.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1955
+  (1.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1956
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1957
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1958
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1959
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1960
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1961
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1962
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1963
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1964
+ TRANSACTION (0.2ms) BEGIN
1965
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-01-22 14:54:20.479169"], ["key", "environment"]]
1966
+ TRANSACTION (1.1ms) COMMIT
1967
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1968
+ TRANSACTION (0.2ms) BEGIN
1969
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 14:54:20.488708"], ["key", "environment"]]
1970
+ TRANSACTION (0.7ms) COMMIT
1971
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1972
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1973
+  (0.2ms) select 1
1974
+  (0.3ms) select 1
1975
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1976
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 15:02:18 +0000
1977
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1978
+
1979
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1980
+
1981
+  (70.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1982
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1983
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1984
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1985
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1986
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1987
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1988
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1989
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1990
+  (0.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
1991
+  (1.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1992
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1993
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1994
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1995
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1996
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1997
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1998
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1999
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2000
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2001
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2002
+ TRANSACTION (0.2ms) BEGIN
2003
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-01-22 15:02:39.693411"], ["key", "environment"]]
2004
+ TRANSACTION (1.3ms) COMMIT
2005
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2006
+ TRANSACTION (0.2ms) BEGIN
2007
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 15:02:39.702484"], ["key", "environment"]]
2008
+ TRANSACTION (0.6ms) COMMIT
2009
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2010
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2011
+  (0.6ms) select 1
2012
+  (0.4ms) select 1
2013
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2014
+  (0.5ms) select 1
2015
+  (0.4ms) select 1
2016
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2017
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-01-22 15:03:57 +0000
2018
+
2019
+ ActionController::RoutingError (No route matches [HEAD] "/_ah/app_health"):
2020
+
2021
+ Started GET "/_ah/app_health" for 172.19.0.1 at 2021-01-22 15:04:36 +0000
2022
+
2023
+ ActionController::RoutingError (No route matches [GET] "/_ah/app_health"):
2024
+
2025
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-01-22 15:07:57 +0000
2026
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-01-22 15:08:03 +0000
2027
+  (0.5ms) select 1
2028
+  (0.3ms) select 1
2029
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2030
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 15:08:03 +0000
2031
+
2032
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2033
+
2034
+ Started GET "/_ah/app_health" for 172.19.0.1 at 2021-01-22 15:08:29 +0000
2035
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 15:08:29 +0000
2036
+
2037
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2038
+
2039
+ Started GET "/_ah/app_health" for 172.19.0.1 at 2021-01-22 15:08:30 +0000
2040
+ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 15:08:30 +0000
2041
+
2042
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2043
+
2044
+  (1.3ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2045
+  (123.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2046
+  (0.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2047
+  (1.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2048
+ SQL (2.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2049
+  (19.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2050
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2051
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2052
+  (6.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2053
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2054
+ TRANSACTION (0.5ms) BEGIN
2055
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 16:30:56.433623"], ["updated_at", "2021-01-22 16:30:56.433623"]]
2056
+ TRANSACTION (1.0ms) COMMIT
2057
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2058
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2059
+ TRANSACTION (0.5ms) BEGIN
2060
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:30:56.454745"], ["updated_at", "2021-01-22 16:30:56.454745"]]
2061
+ TRANSACTION (1.0ms) COMMIT
2062
+  (1.2ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2063
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2064
+  (107.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2065
+  (93.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2066
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2067
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2068
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2069
+  (5.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2070
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2071
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2072
+  (3.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2073
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2074
+ TRANSACTION (0.3ms) BEGIN
2075
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 16:31:22.323747"], ["updated_at", "2021-01-22 16:31:22.323747"]]
2076
+ TRANSACTION (0.7ms) COMMIT
2077
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2078
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2079
+ TRANSACTION (0.2ms) BEGIN
2080
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:31:22.336821"], ["updated_at", "2021-01-22 16:31:22.336821"]]
2081
+ TRANSACTION (0.8ms) COMMIT
2082
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2083
+  (6.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2084
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2085
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2086
+  (3.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2087
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2088
+ TRANSACTION (0.3ms) BEGIN
2089
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 16:31:22.386649"], ["updated_at", "2021-01-22 16:31:22.386649"]]
2090
+ TRANSACTION (0.7ms) COMMIT
2091
+ ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2092
+ TRANSACTION (0.5ms) BEGIN
2093
+ ActiveRecord::InternalMetadata Update (0.8ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 16:31:22.399397"], ["key", "environment"]]
2094
+ TRANSACTION (0.9ms) COMMIT
2095
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2096
+ TRANSACTION (0.5ms) BEGIN
2097
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:31:22.416046"], ["updated_at", "2021-01-22 16:31:22.416046"]]
2098
+ TRANSACTION (1.0ms) COMMIT
2099
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2100
+  (1.3ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2101
+  (92.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2102
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2103
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2104
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2105
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2106
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2107
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2108
+  (7.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2109
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2110
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2111
+  (4.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2112
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2113
+ TRANSACTION (0.3ms) BEGIN
2114
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 16:33:17.579104"], ["updated_at", "2021-01-22 16:33:17.579104"]]
2115
+ TRANSACTION (1.8ms) COMMIT
2116
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2117
+ TRANSACTION (0.3ms) BEGIN
2118
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 16:33:17.590770"], ["key", "environment"]]
2119
+ TRANSACTION (1.0ms) COMMIT
2120
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2121
+ TRANSACTION (0.3ms) BEGIN
2122
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:33:17.600746"], ["updated_at", "2021-01-22 16:33:17.600746"]]
2123
+ TRANSACTION (0.6ms) COMMIT
2124
+  (60.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2125
+  (147.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2126
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2127
+  (11.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2128
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2129
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2130
+  (5.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2131
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2132
+ TRANSACTION (0.2ms) BEGIN
2133
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 11:57:17.292620"], ["updated_at", "2021-03-12 11:57:17.292620"]]
2134
+ TRANSACTION (0.6ms) COMMIT
2135
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2136
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2137
+ TRANSACTION (0.2ms) BEGIN
2138
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 11:57:17.304632"], ["updated_at", "2021-03-12 11:57:17.304632"]]
2139
+ TRANSACTION (0.6ms) COMMIT
2140
+  (71.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2141
+  (65.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2142
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2143
+  (13.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2144
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2145
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2146
+  (7.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2147
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2148
+ TRANSACTION (0.3ms) BEGIN
2149
+ ActiveRecord::InternalMetadata Create (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 11:57:33.105632"], ["updated_at", "2021-03-12 11:57:33.105632"]]
2150
+ TRANSACTION (0.6ms) COMMIT
2151
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2152
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2153
+ TRANSACTION (0.3ms) BEGIN
2154
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 11:57:33.117854"], ["updated_at", "2021-03-12 11:57:33.117854"]]
2155
+ TRANSACTION (0.7ms) COMMIT
2156
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2157
+  (9.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2158
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2159
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2160
+  (8.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2161
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2162
+ TRANSACTION (0.3ms) BEGIN
2163
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 11:57:33.190668"], ["updated_at", "2021-03-12 11:57:33.190668"]]
2164
+ TRANSACTION (0.9ms) COMMIT
2165
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2166
+ TRANSACTION (0.3ms) BEGIN
2167
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 11:57:33.204012"], ["key", "environment"]]
2168
+ TRANSACTION (1.0ms) COMMIT
2169
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2170
+ TRANSACTION (0.4ms) BEGIN
2171
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 11:57:33.217371"], ["updated_at", "2021-03-12 11:57:33.217371"]]
2172
+ TRANSACTION (0.9ms) COMMIT
2173
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2174
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 11:57:49 +0000
2175
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2176
+  (0.3ms) select 1
2177
+  (0.4ms) select 1
2178
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2179
+ Started GET "/favicon.ico" for 172.18.0.1 at 2021-03-12 11:57:49 +0000
2180
+
2181
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2182
+
2183
+  (75.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2184
+  (68.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2185
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2186
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2187
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2188
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2189
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2190
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2191
+  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2192
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2193
+ TRANSACTION (0.4ms) BEGIN
2194
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:20:19.407434"], ["key", "environment"]]
2195
+ TRANSACTION (1.3ms) COMMIT
2196
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2197
+ TRANSACTION (0.3ms) BEGIN
2198
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:20:19.419183"], ["key", "environment"]]
2199
+ TRANSACTION (0.6ms) COMMIT
2200
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2201
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2202
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:20:21 +0000
2203
+  (0.1ms) select 1
2204
+  (0.2ms) select 1
2205
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2206
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2207
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2208
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2209
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2210
+  (70.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2211
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2212
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2213
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2214
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2215
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2216
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2217
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2218
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2219
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2220
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2221
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2222
+  (4.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2223
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2224
+ TRANSACTION (0.2ms) BEGIN
2225
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 12:23:25.148468"], ["updated_at", "2021-03-12 12:23:25.148468"]]
2226
+ TRANSACTION (0.5ms) COMMIT
2227
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2228
+ TRANSACTION (0.2ms) BEGIN
2229
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:23:25.156806"], ["key", "environment"]]
2230
+ TRANSACTION (0.6ms) COMMIT
2231
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2232
+ TRANSACTION (0.2ms) BEGIN
2233
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 12:23:25.165108"], ["updated_at", "2021-03-12 12:23:25.165108"]]
2234
+ TRANSACTION (0.6ms) COMMIT
2235
+  (73.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2236
+  (0.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2237
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2238
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2239
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2240
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2241
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2242
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2243
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2244
+ SQL (0.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2245
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2246
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2247
+ TRANSACTION (0.4ms) BEGIN
2248
+ ActiveRecord::InternalMetadata Update (0.8ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:23:33.522205"], ["key", "environment"]]
2249
+ TRANSACTION (1.1ms) COMMIT
2250
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2251
+ TRANSACTION (0.3ms) BEGIN
2252
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:23:33.533947"], ["key", "environment"]]
2253
+ TRANSACTION (0.7ms) COMMIT
2254
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2255
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2256
+  (4.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2257
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2258
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:23:45 +0000
2259
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2260
+  (0.4ms) select 1
2261
+  (0.4ms) select 1
2262
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2263
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:23:57 +0000
2264
+  (1.7ms) select 1
2265
+  (0.4ms) select 1
2266
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2267
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:23:59 +0000
2268
+  (0.5ms) select 1
2269
+  (0.4ms) select 1
2270
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2271
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:24:00 +0000
2272
+  (0.5ms) select 1
2273
+  (0.4ms) select 1
2274
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2275
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:24:37 +0000
2276
+  (0.3ms) select 1
2277
+  (0.5ms) select 1
2278
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2279
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:24:38 +0000
2280
+  (0.7ms) select 1
2281
+  (0.4ms) select 1
2282
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2283
+  (59.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2284
+  (0.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2285
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2286
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2287
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2288
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2289
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2290
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2291
+  (4.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2292
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2293
+ TRANSACTION (0.2ms) BEGIN
2294
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 12:25:04.393519"], ["updated_at", "2021-03-12 12:25:04.393519"]]
2295
+ TRANSACTION (0.6ms) COMMIT
2296
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2297
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2298
+ TRANSACTION (0.3ms) BEGIN
2299
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 12:25:04.406042"], ["updated_at", "2021-03-12 12:25:04.406042"]]
2300
+ TRANSACTION (0.6ms) COMMIT
2301
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2302
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2303
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2304
+ TRANSACTION (0.2ms) BEGIN
2305
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:25:04.441544"], ["key", "environment"]]
2306
+ TRANSACTION (0.8ms) COMMIT
2307
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2308
+ TRANSACTION (0.2ms) BEGIN
2309
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:25:04.449777"], ["key", "environment"]]
2310
+ TRANSACTION (0.6ms) COMMIT
2311
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2312
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2313
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:25:22 +0000
2314
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2315
+  (0.3ms) select 1
2316
+  (0.3ms) select 1
2317
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2318
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:25:50 +0000
2319
+  (0.6ms) select 1
2320
+  (0.4ms) select 1
2321
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2322
+  (0.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2323
+  (71.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2324
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2325
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2326
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2327
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2328
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2329
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2330
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2331
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2332
+  (8.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2333
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2334
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2335
+  (4.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2336
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2337
+ TRANSACTION (0.2ms) BEGIN
2338
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 12:27:03.574965"], ["updated_at", "2021-03-12 12:27:03.574965"]]
2339
+ TRANSACTION (0.6ms) COMMIT
2340
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2341
+ TRANSACTION (0.2ms) BEGIN
2342
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:27:03.583212"], ["key", "environment"]]
2343
+ TRANSACTION (0.5ms) COMMIT
2344
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2345
+ TRANSACTION (0.2ms) BEGIN
2346
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 12:27:03.591251"], ["updated_at", "2021-03-12 12:27:03.591251"]]
2347
+ TRANSACTION (0.8ms) COMMIT
2348
+  (2.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2349
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2350
+  (0.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2351
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2352
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2353
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2354
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2355
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2356
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2357
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2358
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2359
+  (0.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2360
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2361
+  (2.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2362
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2363
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2364
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2365
+ SQL (0.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2366
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2367
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2368
+ TRANSACTION (0.2ms) BEGIN
2369
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:30:58.860645"], ["key", "environment"]]
2370
+ TRANSACTION (1.3ms) COMMIT
2371
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2372
+ TRANSACTION (0.3ms) BEGIN
2373
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:30:58.870475"], ["key", "environment"]]
2374
+ TRANSACTION (0.6ms) COMMIT
2375
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2376
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2377
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:31:09 +0000
2378
+
2379
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
2380
+ ):
2381
+
2382
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
2383
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
2384
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
2385
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
2386
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
2387
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
2388
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
2389
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
2390
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
2391
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
2392
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
2393
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
2394
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
2395
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
2396
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
2397
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
2398
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
2399
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
2400
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
2401
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
2402
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
2403
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
2404
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
2405
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
2406
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2407
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
2408
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
2409
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
2410
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
2411
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
2412
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
2413
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2414
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
2415
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
2416
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2417
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
2418
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
2419
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
2420
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
2421
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
2422
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
2423
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
2424
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
2425
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
2426
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
2427
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
2428
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
2429
+  (99.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2430
+  (101.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2431
+ SQL (1.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2432
+  (10.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2433
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2434
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2435
+  (6.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2436
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2437
+ TRANSACTION (0.4ms) BEGIN
2438
+ ActiveRecord::InternalMetadata Create (1.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-19 14:16:21.629198"], ["updated_at", "2021-03-19 14:16:21.629198"]]
2439
+ TRANSACTION (0.9ms) COMMIT
2440
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2441
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2442
+ TRANSACTION (0.3ms) BEGIN
2443
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-19 14:16:21.647376"], ["updated_at", "2021-03-19 14:16:21.647376"]]
2444
+ TRANSACTION (0.8ms) COMMIT
2445
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2446
+  (10.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2447
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2448
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2449
+  (7.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2450
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2451
+ TRANSACTION (0.4ms) BEGIN
2452
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-19 14:16:21.735372"], ["updated_at", "2021-03-19 14:16:21.735372"]]
2453
+ TRANSACTION (0.8ms) COMMIT
2454
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2455
+ TRANSACTION (0.3ms) BEGIN
2456
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-19 14:16:21.748905"], ["key", "environment"]]
2457
+ TRANSACTION (0.8ms) COMMIT
2458
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2459
+ TRANSACTION (0.5ms) BEGIN
2460
+ ActiveRecord::InternalMetadata Create (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-19 14:16:21.760432"], ["updated_at", "2021-03-19 14:16:21.760432"]]
2461
+ TRANSACTION (1.7ms) COMMIT
2462
+  (4.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2463
+  (218.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2464
+  (173.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2465
+  (93.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2466
+  (108.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2467
+  (0.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2468
+  (0.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2469
+  (0.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2470
+  (106.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2471
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2472
+  (23.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2473
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2474
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2475
+  (6.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2476
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2477
+ TRANSACTION (0.4ms) BEGIN
2478
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-25 17:28:15.670734"], ["updated_at", "2021-03-25 17:28:15.670734"]]
2479
+ TRANSACTION (1.1ms) COMMIT
2480
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2481
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2482
+ TRANSACTION (0.3ms) BEGIN
2483
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-25 17:28:15.686845"], ["updated_at", "2021-03-25 17:28:15.686845"]]
2484
+ TRANSACTION (0.7ms) COMMIT
2485
+ SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2486
+  (9.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2487
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2488
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2489
+  (6.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2490
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2491
+ TRANSACTION (0.2ms) BEGIN
2492
+ ActiveRecord::InternalMetadata Create (1.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-25 17:28:15.765804"], ["updated_at", "2021-03-25 17:28:15.765804"]]
2493
+ TRANSACTION (0.6ms) COMMIT
2494
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2495
+ TRANSACTION (0.2ms) BEGIN
2496
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-25 17:28:15.782115"], ["key", "environment"]]
2497
+ TRANSACTION (0.8ms) COMMIT
2498
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2499
+ TRANSACTION (0.3ms) BEGIN
2500
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-25 17:28:15.794835"], ["updated_at", "2021-03-25 17:28:15.794835"]]
2501
+ TRANSACTION (0.8ms) COMMIT
2502
+  (20.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2503
+  (10.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2504
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC