hey_doctor 1.1.1 → 1.1.2

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: 5ecc813015d3af61413bec4c626c165d5481920149e74cbc5df53af1124f6e66
4
- data.tar.gz: 8740c72d15676600eed63a0583bea6a69e45d34cd232b76ae624585c16c1921e
3
+ metadata.gz: 249060591232e22edd365caab083880ccf25af55885c865254880de7884e1b22
4
+ data.tar.gz: 9b2db9ce532a468886c5968b7197763bf621488eaadb75191fa4ab32f54d90d7
5
5
  SHA512:
6
- metadata.gz: 8c307e3c8c9724f86ecac67fbc83a3aa956164496118b57a441839e06e59840c35164cc8ffa941c42c427086947170a3fa79a1c14316921481ab35ff688fb87d
7
- data.tar.gz: 25269fa31ba7e3a123350df8463d8d1719ac55e12b9621caec27366cf95b4c0530dbf0a1900154fd5d83bd2cf6959f40320d455eabe63daefd61b5f133528d54
6
+ metadata.gz: 2cb1982e3c1844cb53d2daa6ec239d61b3e2d75a7856f32aec979a52372445fc24193507770090827fe0ac865c0a35734208651308a9aef56842dfe941beec5e
7
+ data.tar.gz: badfcb2c2ffee093ae84e984d948b13eaecd01a2db81046cdae5123174b87c2f2e25102aa8f8338f94e0bd83bc85ebccfe5cef6265f4432d4572cf0af7b225b9
data/README.md CHANGED
@@ -37,6 +37,8 @@ After installing this gem it will mount a endpoint in `/_ah/health`, this will b
37
37
  Redis.current ||= Redis.new(url: ENV['REDIS_URL'])
38
38
  ```
39
39
 
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
+
40
42
  * Add a env var `RAILS_PORT` with the current application port.
41
43
 
42
44
  * Add this line to your application's Gemfile:
@@ -57,7 +59,7 @@ bundle install
57
59
  # config.ru
58
60
 
59
61
  # bunch of requires here
60
- require "hey_doctor"
62
+ require 'hey_doctor'
61
63
 
62
64
  map '/_ah/health' do
63
65
  run HeyDoctor::Rack::HealthCheck.new
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.1.1'
4
+ VERSION = '1.1.2'
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.
@@ -2121,3 +2121,308 @@ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2121
2121
  TRANSACTION (0.3ms) BEGIN
2122
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
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'
@@ -1474,3 +1474,108 @@ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-01-22 16:42:20 +0000
1474
1474
  TRANSACTION (0.3ms) ROLLBACK
1475
1475
  TRANSACTION (0.2ms) BEGIN
1476
1476
  TRANSACTION (0.3ms) ROLLBACK
1477
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
1478
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1479
+ TRANSACTION (0.2ms) BEGIN
1480
+ TRANSACTION (0.5ms) ROLLBACK
1481
+ TRANSACTION (0.2ms) BEGIN
1482
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-01-22 16:44:34 +0000
1483
+ TRANSACTION (0.4ms) ROLLBACK
1484
+ TRANSACTION (0.3ms) BEGIN
1485
+ TRANSACTION (0.4ms) ROLLBACK
1486
+ TRANSACTION (0.3ms) BEGIN
1487
+ TRANSACTION (0.3ms) ROLLBACK
1488
+ TRANSACTION (0.3ms) BEGIN
1489
+  (0.3ms) select 1
1490
+  (0.3ms) select 1
1491
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1492
+ TRANSACTION (0.3ms) ROLLBACK
1493
+ TRANSACTION (0.3ms) BEGIN
1494
+ TRANSACTION (0.3ms) ROLLBACK
1495
+ TRANSACTION (0.3ms) BEGIN
1496
+ TRANSACTION (0.3ms) ROLLBACK
1497
+ TRANSACTION (0.3ms) BEGIN
1498
+  (0.3ms) select 1
1499
+ TRANSACTION (0.3ms) ROLLBACK
1500
+ TRANSACTION (0.3ms) BEGIN
1501
+ TRANSACTION (0.3ms) ROLLBACK
1502
+ TRANSACTION (0.6ms) BEGIN
1503
+ TRANSACTION (0.4ms) ROLLBACK
1504
+ TRANSACTION (0.3ms) BEGIN
1505
+ TRANSACTION (0.3ms) ROLLBACK
1506
+ TRANSACTION (0.2ms) BEGIN
1507
+ TRANSACTION (0.3ms) ROLLBACK
1508
+ TRANSACTION (0.3ms) BEGIN
1509
+ TRANSACTION (0.3ms) ROLLBACK
1510
+ TRANSACTION (0.3ms) BEGIN
1511
+ TRANSACTION (0.4ms) ROLLBACK
1512
+  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
1513
+ TRANSACTION (0.3ms) BEGIN
1514
+ TRANSACTION (0.3ms) ROLLBACK
1515
+ TRANSACTION (0.2ms) BEGIN
1516
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-03-12 11:57:44 +0000
1517
+ TRANSACTION (0.3ms) ROLLBACK
1518
+ TRANSACTION (0.2ms) BEGIN
1519
+ TRANSACTION (0.3ms) ROLLBACK
1520
+ TRANSACTION (0.2ms) BEGIN
1521
+ TRANSACTION (0.3ms) ROLLBACK
1522
+ TRANSACTION (0.2ms) BEGIN
1523
+  (0.7ms) select 1
1524
+  (0.2ms) select 1
1525
+ TRANSACTION (0.2ms) ROLLBACK
1526
+ TRANSACTION (0.2ms) BEGIN
1527
+ TRANSACTION (0.3ms) ROLLBACK
1528
+ TRANSACTION (0.3ms) BEGIN
1529
+ TRANSACTION (0.3ms) ROLLBACK
1530
+ TRANSACTION (0.2ms) BEGIN
1531
+  (0.2ms) select 1
1532
+ TRANSACTION (0.2ms) ROLLBACK
1533
+ TRANSACTION (0.2ms) BEGIN
1534
+ TRANSACTION (0.8ms) ROLLBACK
1535
+ TRANSACTION (0.2ms) BEGIN
1536
+ TRANSACTION (0.3ms) ROLLBACK
1537
+ TRANSACTION (0.3ms) BEGIN
1538
+ TRANSACTION (0.3ms) ROLLBACK
1539
+ TRANSACTION (0.4ms) BEGIN
1540
+ TRANSACTION (0.3ms) ROLLBACK
1541
+ TRANSACTION (0.3ms) BEGIN
1542
+ TRANSACTION (0.3ms) ROLLBACK
1543
+ TRANSACTION (0.2ms) BEGIN
1544
+ TRANSACTION (0.3ms) ROLLBACK
1545
+  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
1546
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1547
+  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
1548
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1549
+ TRANSACTION (0.3ms) BEGIN
1550
+ TRANSACTION (0.3ms) ROLLBACK
1551
+ TRANSACTION (0.2ms) BEGIN
1552
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:27:11 +0000
1553
+ TRANSACTION (0.3ms) ROLLBACK
1554
+ TRANSACTION (0.2ms) BEGIN
1555
+ TRANSACTION (0.2ms) ROLLBACK
1556
+ TRANSACTION (0.4ms) BEGIN
1557
+ TRANSACTION (0.4ms) ROLLBACK
1558
+ TRANSACTION (0.8ms) BEGIN
1559
+  (0.5ms) select 1
1560
+  (0.5ms) select 1
1561
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1562
+ TRANSACTION (0.4ms) ROLLBACK
1563
+ TRANSACTION (0.3ms) BEGIN
1564
+ TRANSACTION (0.5ms) ROLLBACK
1565
+ TRANSACTION (0.4ms) BEGIN
1566
+ TRANSACTION (0.5ms) ROLLBACK
1567
+ TRANSACTION (0.5ms) BEGIN
1568
+  (0.4ms) select 1
1569
+ TRANSACTION (0.4ms) ROLLBACK
1570
+ TRANSACTION (0.4ms) BEGIN
1571
+ TRANSACTION (0.4ms) ROLLBACK
1572
+ TRANSACTION (0.3ms) BEGIN
1573
+ TRANSACTION (0.4ms) ROLLBACK
1574
+ TRANSACTION (0.4ms) BEGIN
1575
+ TRANSACTION (0.3ms) ROLLBACK
1576
+ TRANSACTION (0.3ms) BEGIN
1577
+ TRANSACTION (0.4ms) ROLLBACK
1578
+ TRANSACTION (0.3ms) BEGIN
1579
+ TRANSACTION (0.3ms) ROLLBACK
1580
+ TRANSACTION (0.3ms) BEGIN
1581
+ TRANSACTION (0.5ms) ROLLBACK
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hey_doctor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matheus Acosta
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-01-22 00:00:00.000000000 Z
12
+ date: 2021-03-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dotenv-rails
@@ -185,7 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
185
185
  - !ruby/object:Gem::Version
186
186
  version: '0'
187
187
  requirements: []
188
- rubygems_version: 3.0.9
188
+ rubygems_version: 3.0.8
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: A health check gem implementation in ruby.